first commit
This commit is contained in:
27
frontend/tailwind.config.js
Normal file
27
frontend/tailwind.config.js
Normal file
@@ -0,0 +1,27 @@
|
||||
/** @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: [],
|
||||
}
|
||||
Reference in New Issue
Block a user