58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html", "./src/**/*.{rs,html}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['"Space Grotesk"', 'sans-serif'],
|
|
},
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: "#f49d25",
|
|
focus: "#d68315",
|
|
content: "#ffffff",
|
|
},
|
|
gray: {
|
|
900: "#111827",
|
|
800: "#1f2937",
|
|
700: "#374151",
|
|
glass: "rgba(31, 41, 55, 0.7)",
|
|
},
|
|
glass: {
|
|
100: "rgba(255, 255, 255, 0.1)",
|
|
200: "rgba(255, 255, 255, 0.2)",
|
|
border: "rgba(255, 255, 255, 0.1)",
|
|
}
|
|
},
|
|
backgroundImage: {
|
|
'glass-gradient': 'linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%)',
|
|
}
|
|
},
|
|
},
|
|
plugins: [require("daisyui")],
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
vibeglass: {
|
|
"primary": "#f49d25",
|
|
"secondary": "#3b82f6",
|
|
"accent": "#10b981",
|
|
"neutral": "#1f2937",
|
|
"base-100": "#0f172a", // Çok koyu mavi/siyah arka plan
|
|
"base-200": "#1e293b",
|
|
"base-300": "#334155",
|
|
"base-content": "#f3f4f6",
|
|
"info": "#3abff8",
|
|
"success": "#36d399",
|
|
"warning": "#fbbd23",
|
|
"error": "#f87272",
|
|
"--rounded-box": "0.5rem", // ROUND_EIGHT
|
|
"--rounded-btn": "0.5rem",
|
|
"--glass-blur": "12px",
|
|
"--glass-opacity": "0.7",
|
|
},
|
|
},
|
|
"dark",
|
|
],
|
|
},
|
|
}; |