28 lines
538 B
JavaScript
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: [],
|
|
}
|