2024-09-13 01:31:18 +00:00
|
|
|
const {join} = require("node:path");
|
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
const root = join(__dirname, "../../");
|
2024-09-13 15:47:18 +00:00
|
|
|
const contentGo = join(root, "**/*.go");
|
|
|
|
|
const contentJs = join(root, "**/pages/**/*.js");
|
2024-09-13 01:31:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
2024-09-13 15:47:18 +00:00
|
|
|
content: [contentGo, contentJs],
|
2024-09-13 01:31:18 +00:00
|
|
|
theme: {
|
2024-09-13 15:47:18 +00:00
|
|
|
extend: {
|
|
|
|
|
colors: {
|
|
|
|
|
background: 'hsl(224, 71.4%, 4.1%)',
|
|
|
|
|
foreground: 'hsl(0, 0%, 89%)',
|
|
|
|
|
card: 'hsl(224, 71.4%, 4.1%)',
|
|
|
|
|
cardForeground: 'hsl(0, 0%, 89%)',
|
|
|
|
|
popover: 'hsl(224, 71.4%, 4.1%)',
|
|
|
|
|
popoverForeground: 'hsl(0, 0%, 89%)',
|
|
|
|
|
primary: 'hsl(0, 0%, 89%)',
|
|
|
|
|
primaryForeground: 'hsl(220.9, 39.3%, 11%)',
|
|
|
|
|
secondary: 'hsl(215, 27.9%, 16.9%)',
|
|
|
|
|
secondaryForeground: 'hsl(0, 0%, 89%)',
|
|
|
|
|
muted: 'hsl(215, 27.9%, 16.9%)',
|
|
|
|
|
mutedForeground: 'hsl(217.9, 10.6%, 64.9%)',
|
|
|
|
|
accent: 'hsl(215, 27.9%, 16.9%)',
|
|
|
|
|
accentForeground: 'hsl(0, 0%, 89%)',
|
|
|
|
|
destructive: 'hsl(0, 62.8%, 30.6%)',
|
|
|
|
|
destructiveForeground: 'hsl(0, 0%, 89%)',
|
|
|
|
|
border: 'hsl(215, 27.9%, 16.9%)',
|
|
|
|
|
input: 'hsl(215, 27.9%, 16.9%)',
|
|
|
|
|
ring: 'hsl(216, 12.2%, 83.9%)',
|
|
|
|
|
},
|
|
|
|
|
},
|
2024-09-13 01:31:18 +00:00
|
|
|
},
|
|
|
|
|
plugins: [],
|
|
|
|
|
};
|