27 lines
732 B
JavaScript
27 lines
732 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
// Admin (dark) theme. Separate build so its flat custom colors do not collide
|
||
|
|
// with the public site's use of built-in color scales (e.g. emerald-600).
|
||
|
|
module.exports = {
|
||
|
|
content: [
|
||
|
|
'./Pages/Admin/**/*.cshtml',
|
||
|
|
'./Pages/Shared/_AdminLayout.cshtml',
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
base: { DEFAULT: '#020510', 800: '#050a1a' },
|
||
|
|
electric: '#38bdf8',
|
||
|
|
violet: '#818cf8',
|
||
|
|
magenta: '#e879f9',
|
||
|
|
emerald: '#34d399',
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
display: ['Syne', 'system-ui', 'sans-serif'],
|
||
|
|
sans: ['Syne', 'system-ui', 'sans-serif'],
|
||
|
|
mono: ['SpaceMono', 'monospace'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|