forked from hutamatr/todolist-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (49 loc) · 1.42 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
'neutral-900': '#18191F',
'neutral-800': '#2F2F35',
'neutral-700': '#44454A',
'neutral-600': '#5B5B60',
'neutral-500': '#707175',
'neutral-400': '#D3D3D4',
'neutral-300': '#DEDEDE',
'neutral-200': '#EDEDED',
'neutral-100': '#F7F7F7',
'orange-100': '#FF844B',
'orange-80': '#FF9D6F',
'orange-50': '#FFC1A5',
'green-100': '#5BE26A',
'green-10': '#DBFFDF',
'blue-100': '#6599FE',
'blue-10': '#EBF7FA',
'red-100': '#FE6565',
'red-10': '#FFF6E0',
'purple-100': '#C659ED',
'material-green': '#F1F6EA',
'material-background': '#fbfbf8',
},
boxShadow: {
'material-shadow':
'rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px',
'material-shadow-2':
'rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px',
'material-shadow-3': 'rgba(0, 0, 0, 0.1) -4px 9px 25px -6px',
},
backgroundImage: {
'ellipse-image': "url('/src/assets/images/Ellipse.svg')",
},
fontFamily: {
'Poiret-One': 'Poiret One',
},
},
},
plugins: [require('daisyui')],
daisyui: {
themes: false,
},
darkMode: 'class',
};