generated from m1guelpf/dapp-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.js
57 lines (57 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
50
51
52
53
54
55
56
57
/** @type {import('tailwindcss/tailwind-config').TailwindConfig} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: [
'Open Sans',
'ui-sans-serif',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'Helvetica Neue',
'Arial',
'Noto Sans',
'sans-serif',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
'Noto Color Emoji',
],
},
blur: {
DEFAULT: 'blur(4px)',
},
fillColor: {
'telegram-brand': '#0088CC',
},
backgroundColor: {
'light-primary': '#f5f5f5',
'lighter-primary': '#1c224d',
'light-secondary': '#0c113a',
'dark-primary': '#0c113a',
'dark-secondary': '#e74524',
'off-white': '#f5f5f5',
},
textColor: {
'light-primary': '#0c113a',
'light-secondary': '#e74524',
'dark-primary': '#0c113a',
'dark-secondary': '#e74524',
'off-white': '#f5f5f5',
},
borderColor: {
'light-primary': '#0c113a',
'light-secondary': '#e74524',
'dark-primary': '#0c113a',
'dark-secondary': '#e74524',
'off-white': '#f5f5f5',
},
},
},
plugins: [require('@tailwindcss/forms')],
}