-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
71 lines (70 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import { colors } from './src/constants/colors';
module.exports = {
darkMode: 'class',
content: [
'./src/**/*.{js,ts,jsx,tsx}',
'node_modules/daisyui/dist/**/*.js',
'node_modules/react-daisyui/dist/**/*.js',
],
plugins: [require('daisyui')],
themes: ['pendulum', 'amplitude'],
theme: {
extend: {
colors,
screens: {
xs: '480px',
},
opacity: {
3: '0.03',
},
},
},
daisyui: {
themes: [
// The colors defined for the following themes have to match the ones defined in the color configuration
// here: https://daisyui.com/docs/colors
// Undefined colors will be chosen by daisyUI automatically.
{
pendulum: {
primary: '#907EA0',
'primary-content': '#fff',
secondary: '#F4F2F6',
'secondary-content': '#667892',
accent: '#1DE7DF',
neutral: '#F4F8F9',
'accent-content': '#1B365D',
'base-100': '#F4F8F9',
'base-200': '#fff',
'base-300': '#E8EBEF',
'--base-400': '#DAE9EB',
'base-content': '#32253E',
'--text': '#1B365D',
'--bg-modal': '#fff',
'--modal-border': '#E5E5E5',
'--rounded-btn': '9px',
'--btn-text-case': 'none',
},
amplitude: {
primary: '#4EE59A',
'primary-content': '#fff',
secondary: '#096F6B',
'secondary-content': '#8EBDBB',
accent: '#4EE59A',
'accent-content': '#fff',
neutral: '#141414',
'neutral-content': '#B9B9B9',
'base-100': '#1C1C1C',
'base-200': '#141414',
'base-300': '#0C0C0C',
'--base-400': '#E8E8E8',
'base-content': '#fff',
'--text': '#fff',
'--bg-modal': '#141414',
'--modal-border': '#434343',
'--rounded-btn': '9px',
'--btn-text-case': 'none',
},
},
],
},
};