22 lines
473 B
JavaScript
22 lines
473 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
ink: "#0a0a0d",
|
|
panel: "#141419",
|
|
soft: "#1c1d24",
|
|
edge: "#2a2c35",
|
|
text: "#f2f4f8",
|
|
subtext: "#99a1b3",
|
|
accent: "#1ed760"
|
|
},
|
|
boxShadow: {
|
|
glow: "0 0 0 1px rgba(255,255,255,0.06), 0 20px 80px rgba(0,0,0,0.35)"
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|