22 lines
461 B
JavaScript
22 lines
461 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
// Dark theme matching Moonlight/Parsec vibes
|
||
|
|
surface: {
|
||
|
|
DEFAULT: "#1a1a2e",
|
||
|
|
raised: "#16213e",
|
||
|
|
elevated: "#0f3460",
|
||
|
|
},
|
||
|
|
accent: {
|
||
|
|
DEFAULT: "#e94560",
|
||
|
|
hover: "#c73652",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|