Files
exams/frontend/tailwind.config.js
Space-Banane ead561d10b first commit
2026-02-09 19:26:40 +01:00

28 lines
538 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
apple: {
dark: '#000000',
card: '#1c1c1e',
secondary: '#2c2c2e',
accent: '#0a84ff',
text: '#f5f5f7',
muted: '#86868b'
}
},
borderRadius: {
'apple': '12px',
'apple-lg': '20px'
}
},
},
plugins: [],
}