28 lines
623 B
JavaScript
28 lines
623 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./app/**/*.{js,jsx,ts,tsx}",
|
|
"./components/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
presets: [require("nativewind/preset")],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bg: "#0f1117",
|
|
surface: "#1a1d27",
|
|
"surface-2": "#252836",
|
|
primary: "#6366f1",
|
|
"primary-dim": "#4338ca",
|
|
success: "#22c55e",
|
|
warning: "#f59e0b",
|
|
danger: "#ef4444",
|
|
"text-1": "#f1f5f9",
|
|
"text-2": "#94a3b8",
|
|
"text-dim": "#64748b",
|
|
border: "#2d3147",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|