-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
109 lines (92 loc) · 2.96 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./src/renderer/index.html',
'./src/**/*.{js,jsx,ts,tsx}',
'./node_modules/@nethesis/phone_island/**/*.{js,jsx,ts,tsx}'
],
theme: {
extend: {
colors: {
//borders
borderDark: '#374151', //gray-700
borderLight: '#E5E7EB', //gray-200
//primary
primary: '#1d4ed8', // blue-700
primaryHover: '#1e40af', // blue-800
primaryRing: '#3b82f6', // blue-500
//primary dark
primaryDark: '#3b82f6', // blue-500
primaryDarkHover: '#93c5fd', // blue-300
primaryRingDark: '#bfdbfe', // blue-200
//text
titleLight: '#111827', // gray-900
titleDark: '#F9FAFB', // gray-50
//blue text
textBlueLight: '#1d4ed8', //blue-700
textBlueDark: '#3b82f6', // blue-500
//yellow text
textYellowLight: '#B45309', //yellow-700
textYellowDark: '#F59E0B', // yellow-500
//red text
textRedLight: '#BE123C', //red-700
textRedDark: '#F43F5E', // red-500
//amber icon
iconAmberLight: '#b45309', //amber-700
iconAmberDark: '#fef3c7', // amber-100
//buttonPrimary
primaryButtonText: '#fff', // white
primaryButtonTextDark: '#030712', // gray-950
//input
bgInput: '#fff', // white
inputText: '#111827', // gray-900
inputLabelTitle: '#111827', // gray-900
placeHolderInputText: '#111827', // gray-900
inputIcon: '#374151', // gray-700
//input dark
bgInputDark: '#030712', // gray-950
inputTextDark: '#F9FAFB', // gray-50
inputLabelTitleDark: '#F9FAFB', // gray-50
placeHolderInputTextDark: '#F9FAFB', // gray-50
inputIconDark: '#F9FAFB', // gray-50
//loadingSpinnerBackground
spinnerBgLight: '#f9fafb', // gray-50
spinnerBgDark: '#030712', // gray-950
//background
bgLight: '#f9fafb', // gray-50
bgDark: '#111827', // gray-900
bgEmerald: '#15803D', // gray-900
//modal
bgAmberLight: '#fef3c7', //amber-100
bgAmberDark: '#b45309', //amber-700
//hover
hoverDark: '#1f2937', // gray-800
hoverLight: '#E5E7EB', // gray-200
//ring
ringBlueDark: '#bfdbfe', // blue-200
ringBlueLight: '#3b82f6', // blue-500
//ring-offset
ringOffsetDark: '#111827', // gray-900
ringOffsetLight: '#F9FAFB', // gray-50
//iconEmpty
emptyIconLight: '#9CA3AF',
emptyIconDark: '#6B7280',
//textEmpty
emptyTextLight: '#374151',
emptyTextDark: '#E5E7EB'
},
screens: {
'3xl': '1792px',
'4xl': '2048px',
'5xl': '2560px',
'6xl': '3072px',
'7xl': '3584px'
},
fontFamily: {
Poppins: ['Poppins', 'sans-serif']
}
}
},
plugins: [require('@tailwindcss/forms')],
darkMode: 'selector'
}