-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
59 lines (59 loc) · 1.59 KB
/
Copy pathtailwind.config.js
File metadata and controls
59 lines (59 loc) · 1.59 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,html}'],
theme: {
extend: {
colors: {
'bd-bg-start': '#0c1222',
'bd-bg-mid1': '#1a1040',
'bd-bg-mid2': '#2d1b4e',
'bd-bg-end': '#1a2744',
},
backgroundImage: {
'bd-gradient':
'linear-gradient(135deg, #0c1222 0%, #1a1040 40%, #2d1b4e 70%, #1a2744 100%)',
},
boxShadow: {
'card-hover': '0 12px 32px rgba(0,0,0,.35)',
'modal': '0 20px 60px rgba(0,0,0,.5)',
},
animation: {
'spin-slow': 'spin 0.7s linear infinite',
},
},
},
plugins: [require('daisyui')],
daisyui: {
themes: [
'light',
'dark',
{
'revivetab': {
'primary': '#4fc3f7',
'primary-content': '#0c1222',
'secondary': '#ab47bc',
'accent': '#ff9800',
'neutral': '#1e1e2e',
'base-100': '#0c1222',
'base-200': '#15182b',
'base-300': '#1e2238',
'base-content': '#e8e8e8',
'info': '#26c6da',
'success': '#66bb6a',
'warning': '#ffa726',
'error': '#ef5350',
'--rounded-box': '0.75rem',
'--rounded-btn': '0.625rem',
'--rounded-badge': '0.5rem',
'--animation-btn': '0.15s',
'--btn-text-case': 'none',
},
},
],
darkTheme: 'dark',
base: true,
styled: true,
utils: true,
logs: false,
},
};