Add tailwind.config.js
This commit is contained in:
parent
78c524020e
commit
a21d3669f9
1 changed files with 21 additions and 0 deletions
21
tailwind.config.js
Normal file
21
tailwind.config.js
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
/** @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: [],
|
||||
};
|
||||
Loading…
Reference in a new issue