-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
92 lines (88 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}', './utils/**/*.{js,ts,jsx,tsx}'],
plugins: [require('daisyui')],
darkTheme: 'scaffoldEthDark',
// DaisyUI theme colors
daisyui: {
themes: [
{
scaffoldEth: {
primary: '#000000',
'primary-content': '#F5F5F5',
secondary: '#333333',
'secondary-content': '#F5F5F5',
accent: '#C2C2C2',
'accent-content': '#088484',
neutral: '#222222',
'neutral-content': '#DFFE00',
'base-100': '#222222',
'base-200': '#000000',
'base-300': '#111111',
'base-content': '#F5F5F5',
info: '#C8F5FF',
success: '#65D072',
warning: '#F4BF4F',
error: '#ff0420',
'--rounded-btn': '9999rem',
'.tooltip': {
'--tooltip-tail': '6px',
},
'.link': {
textUnderlineOffset: '2px',
},
'.link:hover': {
opacity: '80%',
},
},
},
{
scaffoldEthDark: {
primary: '#000000',
'primary-content': '#F5F5F5',
secondary: '#333333',
'secondary-content': '#F5F5F5',
accent: '#C2C2C2',
'accent-content': '#088484',
neutral: '#222222',
'neutral-content': '#DFFE00',
'base-100': '#222222',
'base-200': '#000000',
'base-300': '#111111',
'base-content': '#F5F5F5',
info: '#C8F5FF',
success: '#65D072',
warning: '#F4BF4F',
error: '#EC6A5E',
'--rounded-btn': '9999rem',
'.tooltip': {
'--tooltip-tail': '6px',
'--tooltip-color': 'oklch(var(--p))',
},
'.link': {
textUnderlineOffset: '2px',
},
'.link:hover': {
opacity: '80%',
},
},
},
],
},
theme: {
extend: {
fontFamily: {
'ibm-mono': ['IBM Plex Mono', 'monospace'],
'ibm-sans': ['IBM Plex Sans', 'sans-serif'],
chakra: ['Chakra Petch', 'sans-serif'],
VT323: ['VT323', 'monospace'],
},
boxShadow: {
center: '0 0 12px -2px rgb(0 0 0 / 0.05)',
},
animation: {
'pulse-fast': 'pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
},
},
}