Define your site’s color system with a theme.json file. This lets you tailor the look and feel of your documentation without changing content.
Place a theme.json at your project root (the same folder where you execute npx doccupine). It supports multiple modes. Define a default mode and a dark mode.
{
"default": {
"primaryLight": "#93c5fd",
"primary": "#3b82f6",
"primaryDark": "#1e40af",
"secondaryLight": "#c4b5fd",
"secondary": "#8b5cf6",
"secondaryDark": "#5b21b6",
"tertiaryLight": "#fbbf24",
"tertiary": "#f59e0b",
"tertiaryDark": "#d97706",
"grayLight": "#f3f4f6",
"gray": "#9ca3af",
"grayDark": "#374151",
"success": "#10b981",
"error": "#f43f5e",
"warning": "#f59e0b",
"info": "#3b82f6",
"dark": "#000000",
"light": "#ffffff"
},
"dark": {
"primaryLight": "#9bcaff",
"primary": "#1e7ae0",
"primaryDark": "#033d7e",
"secondaryLight": "#ddd6fe",
"secondary": "#a78bfa",
"secondaryDark": "#7c3aed",
"tertiaryLight": "#fed7aa",
"tertiary": "#fb923c",
"tertiaryDark": "#ea580c",
"grayLight": "#1f2937",
"gray": "#6b7280",
"grayDark": "#9ca3af",
"success": "#10b981",
"error": "#f43f5e",
"warning": "#f59e0b",
"info": "#3b82f6",
"dark": "#ffffff",
"light": "#000000"
},
"logo": {
"dark": "https://docs.doccupine.com/logo-dark.svg",
"light": "https://docs.doccupine.com/logo-light.svg"
}
}theme.json in the project root alongside config.json.default value.Use valid hex colors (e.g., #22c55e). Invalid color values may cause unexpected rendering.
primary color, then derive primaryLight and primaryDark.In the following demos, you can see how the theme can be changed. To override the theme, create a theme.json file in the project root and copy paste the code below.
{
"default": {
"primaryLight": "#c4b5fd",
"primary": "#8b5cf6",
"primaryDark": "#5b21b6",
"secondaryLight": "#86efac",
"secondary": "#22c55e",
"secondaryDark": "#15803d",
"tertiaryLight": "#fbbf24",
"tertiary": "#f59e0b",
"tertiaryDark": "#d97706",
"grayLight": "#f3f4f6",
"gray": "#9ca3af",
"grayDark": "#374151",
"success": "#10b981",
"error": "#f43f5e",
"warning": "#f59e0b",
"info": "#3b82f6",
"dark": "#000000",
"light": "#ffffff"
},
"dark": {
"primaryLight": "#ddd6fe",
"primary": "#a78bfa",
"primaryDark": "#7c3aed",
"secondaryLight": "#6ee7b7",
"secondary": "#10b981",
"secondaryDark": "#065f46",
"tertiaryLight": "#fed7aa",
"tertiary": "#fb923c",
"tertiaryDark": "#ea580c",
"grayLight": "#1f2937",
"gray": "#6b7280",
"grayDark": "#9ca3af",
"success": "#10b981",
"error": "#f43f5e",
"warning": "#f59e0b",
"info": "#3b82f6",
"dark": "#ffffff",
"light": "#000000"
}
}{
"default": {
"primaryLight": "#86efac",
"primary": "#22c55e",
"primaryDark": "#15803d",
"secondaryLight": "#c4b5fd",
"secondary": "#8b5cf6",
"secondaryDark": "#5b21b6",
"tertiaryLight": "#fbbf24",
"tertiary": "#f59e0b",
"tertiaryDark": "#d97706",
"grayLight": "#f3f4f6",
"gray": "#9ca3af",
"grayDark": "#374151",
"success": "#10b981",
"error": "#f43f5e",
"warning": "#f59e0b",
"info": "#3b82f6",
"dark": "#000000",
"light": "#ffffff"
},
"dark": {
"primaryLight": "#6ee7b7",
"primary": "#10b981",
"primaryDark": "#065f46",
"secondaryLight": "#ddd6fe",
"secondary": "#a78bfa",
"secondaryDark": "#7c3aed",
"tertiaryLight": "#fed7aa",
"tertiary": "#fb923c",
"tertiaryDark": "#ea580c",
"grayLight": "#1f2937",
"gray": "#6b7280",
"grayDark": "#9ca3af",
"success": "#10b981",
"error": "#f43f5e",
"warning": "#f59e0b",
"info": "#3b82f6",
"dark": "#ffffff",
"light": "#000000"
}
}{
"default": {
"primaryLight": "#fbbf24",
"primary": "#f59e0b",
"primaryDark": "#d97706",
"secondaryLight": "#c4b5fd",
"secondary": "#8b5cf6",
"secondaryDark": "#5b21b6",
"tertiaryLight": "#86efac",
"tertiary": "#22c55e",
"tertiaryDark": "#15803d",
"grayLight": "#f3f4f6",
"gray": "#9ca3af",
"grayDark": "#374151",
"success": "#10b981",
"error": "#f43f5e",
"warning": "#f59e0b",
"info": "#3b82f6",
"dark": "#000000",
"light": "#ffffff"
},
"dark": {
"primaryLight": "#fed7aa",
"primary": "#fb923c",
"primaryDark": "#ea580c",
"secondaryLight": "#ddd6fe",
"secondary": "#a78bfa",
"secondaryDark": "#7c3aed",
"tertiaryLight": "#6ee7b7",
"tertiary": "#10b981",
"tertiaryDark": "#065f46",
"grayLight": "#1f2937",
"gray": "#6b7280",
"grayDark": "#9ca3af",
"success": "#10b981",
"error": "#f43f5e",
"warning": "#f59e0b",
"info": "#3b82f6",
"dark": "#ffffff",
"light": "#000000"
}
}