From 286c96c9038b96ed5eedac5773a4a59fb5065892 Mon Sep 17 00:00:00 2001
From: omer-topal
Date: Tue, 31 Mar 2026 20:07:04 +0300
Subject: [PATCH 01/12] docs: css update
---
docs/custom.css | 338 ++++++++++++++++++++++++++++++++++++++++++++
docs/favicon.png | Bin 0 -> 1218 bytes
docs/logo/dark.svg | 56 +-------
docs/logo/light.svg | 56 +-------
docs/mint.json | 37 +++--
5 files changed, 367 insertions(+), 120 deletions(-)
create mode 100644 docs/custom.css
create mode 100644 docs/favicon.png
diff --git a/docs/custom.css b/docs/custom.css
new file mode 100644
index 000000000..3a39efb1b
--- /dev/null
+++ b/docs/custom.css
@@ -0,0 +1,338 @@
+/* ==========================================================================
+ FusionAuth Theme Approximation for Mintlify
+ Colors: Orange #F58320, Slate-800 #1e293b, Background #F1F5F9
+ Font: Inter variable — full weight range 100–900
+ ========================================================================== */
+
+/* Load Inter with all weights so nothing gets browser-synthesised */
+@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
+
+/* Apply Inter everywhere — overrides Mintlify's default stack */
+*, *::before, *::after {
+ font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif !important;
+}
+
+/* Code blocks stay monospace */
+pre, code, kbd, samp, tt {
+ font-family: 'JetBrains Mono', 'Fira Code', 'Menlo', 'Monaco', 'Consolas', monospace !important;
+}
+
+/* ---------- Root color overrides ---------- */
+:root {
+ --fa-orange: #F58320;
+ --fa-orange-light: #fb923c;
+ --fa-orange-dark: #ea580c;
+ --fa-slate-800: #1e293b;
+ --fa-slate-700: #334155;
+ --fa-slate-100: #F1F5F9;
+ --fa-slate-200: #E2E8F0;
+}
+
+/* ---------- Banner ---------- */
+#banner {
+ background-color: var(--fa-slate-800) !important;
+ color: #fff !important;
+ border-bottom: 2px solid var(--fa-orange) !important;
+}
+
+#banner a {
+ color: var(--fa-orange-light) !important;
+ text-decoration: underline !important;
+}
+
+#banner a:hover {
+ color: #fff !important;
+}
+
+/* ---------- Top navigation bar (dark, like FusionAuth docs) ---------- */
+/* IMPORTANT: Only target #navbar — NOT or
-## Roadmap
-
-You can find Permify's Public Roadmap [here](https://github.com/orgs/Permify/projects/1)!
-
## Need any help on Authorization ?
Our team is happy to help you get started with Permify. If you'd like to learn more about using Permify or how it might fit into your authorization workflow, [schedule a consultation call with one of our account executives](https://www.permify.co/book-demo).
diff --git a/docs/mint.json b/docs/mint.json
index f1f4cbd11..fd66ffa21 100644
--- a/docs/mint.json
+++ b/docs/mint.json
@@ -1,6 +1,6 @@
{
"$schema": "https://mintlify.com/schema.json",
- "name": "Docs",
+ "name": "FGA Documentation",
"logo": {
"dark": "/logo/dark.svg",
"light": "/logo/light.svg",
@@ -16,7 +16,7 @@
"to": "#ea580c"
},
"background": {
- "light": "#F1F5F9",
+ "light": "#ffffff",
"dark": "#0f172a"
}
},
@@ -33,8 +33,8 @@
"css": "/custom.css",
"topbarLinks": [
{
- "name": "Support",
- "url": "https://discord.gg/permify"
+ "name": "FusionAuth Documentation",
+ "url": "https://fusionauth.io/docs/"
}
],
"modeToggle": {
@@ -51,10 +51,7 @@
"measurementId": "G-BSRXWHBYR1"
}
},
- "topbarCtaButton": {
- "name": "Playground",
- "url": "https://play.permify.co/?s=organizations-hierarchies"
- },
+
"redirects": [
{
"source": "/docs/:slug*",
@@ -229,29 +226,16 @@
"destination": "/use-cases/rbac"
}
],
+ "primaryTab": {
+ "name": "FGA Documentation"
+ },
"tabs": [
{
"name": "API References",
"url": "api-reference"
}
],
- "anchors": [
- {
- "name": "Community",
- "icon": "discord",
- "url": "https://discord.gg/permify"
- },
- {
- "name": "Open Source",
- "icon": "github",
- "url": "https://github.com/Permify/permify"
- },
- {
- "name": "Playground",
- "icon": "play",
- "url": "https://play.permify.co/?s=organizations-hierarchies"
- }
- ],
+
"navigation": [
{
"group": "Introduction",
diff --git a/docs/permify-overview/intro.mdx b/docs/permify-overview/intro.mdx
index a54e24c4f..5bb028862 100644
--- a/docs/permify-overview/intro.mdx
+++ b/docs/permify-overview/intro.mdx
@@ -3,10 +3,6 @@ title: Explore Permify
description: 'Start building scalable and fine-grained authorization systems in mere minutes.'
---
-
- 🎉 Exciting news: Permify has been acquired by FusionAuth! Read more: Permify Blog Post | Official Press Release | FusionAuth Blog Post
-
-
Date: Tue, 14 Apr 2026 19:38:22 +0300
Subject: [PATCH 11/12] chore: change relavite link
---
docs/mint.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/mint.json b/docs/mint.json
index fd66ffa21..d9b92363b 100644
--- a/docs/mint.json
+++ b/docs/mint.json
@@ -34,7 +34,7 @@
"topbarLinks": [
{
"name": "FusionAuth Documentation",
- "url": "https://fusionauth.io/docs/"
+ "url": "/docs/"
}
],
"modeToggle": {
From fa9828dbf9e0c1821faeb0bfeeccc7b390badc41 Mon Sep 17 00:00:00 2001
From: omer-topal
Date: Tue, 14 Apr 2026 19:51:47 +0300
Subject: [PATCH 12/12] update grid background size
---
docs/custom.css | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/custom.css b/docs/custom.css
index f3a4fe411..abebc1707 100644
--- a/docs/custom.css
+++ b/docs/custom.css
@@ -18,7 +18,7 @@ html:not(.dark) {
radial-gradient(768px at right top, rgba(199, 210, 254, 0.65) 0%, rgba(255, 255, 255, 1.0) 80%),
linear-gradient(rgba(99, 102, 241, 0.4) 1px, transparent 1px),
linear-gradient(90deg, rgba(99, 102, 241, 0.4) 1px, transparent 1px) !important;
- background-size: 100% 6000px, 34px 34px, 34px 34px !important;
+ background-size: 100% 30000px, 34px 34px, 34px 34px !important;
background-position: 0 0, 0 0, 0 0 !important;
background-repeat: no-repeat, repeat, repeat !important;
background-attachment: local, local, local !important;