28 lines
706 B
JavaScript
28 lines
706 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: "class",
|
|
content: [
|
|
"./app/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"acid-green": "#4aff8c",
|
|
"rathian-dark": "#0a8a3a",
|
|
"wy-dark": "#0d1117",
|
|
"wy-surface": "#161b22",
|
|
"wy-border": "#30363d",
|
|
"wy-text-primary": "#c9d1d9",
|
|
"wy-text-secondary": "#8b949e",
|
|
// Light theme
|
|
"wy-light-bg": "#f0f6ff",
|
|
"wy-light-surface": "#ffffff",
|
|
"wy-light-border": "#d0d7de",
|
|
"wy-light-text-primary": "#1c2128",
|
|
"wy-light-text-secondary": "#57606a",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |