-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
142 lines (135 loc) · 3.57 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
mode: 'jit',
darkMode: 'class',
theme: {
extend: {
fontFamily:{
'roboto': ['Roboto', 'sans-serif'],
},
colors:{
'bg-color': 'hsl(240, 7%, 9%)',
'bg-second': 'hsl(225, 8%, 10%)',
'star': 'hsl(226, 100%, 66%)',
'input-card':'hsl(197, 11%, 12%)',
'input-bg': 'hsl(200, 13%, 9%)',
'input-focus': 'hsl(226, 100%, 66%)',
'button-blue': 'hsl(226, 100%, 36%)'
},
borderColor:{
'bg-color': 'hsl(240, 7%, 9%)',
'bg-second': 'hsl(225, 8%, 10%)',
'star': 'hsl(226, 100%, 66%)',
'star-second': 'hsl(226, 100%, 56%)',
'input-card':'hsl(197, 11%, 12%)',
'input-bg': 'hsl(200, 13%, 9%)',
'input-focus': 'hsl(226, 100%, 66%)',
'button-blue': 'hsl(226, 100%, 36%)'
},
backgroundColor:{
'bg-color': 'hsl(225, 8%, 10%) ',
'bg-color-radio': '#448ef3',
'bg-second': 'hsl(225, 8%, 10%)',
'star': 'hsl(226, 100%, 66%)',
'star-second': 'hsl(198, 93%, 60%)',
'input-card':'hsl(197, 11%, 12%)',
'input-bg': 'hsl(200, 13%, 9%)',
'input-focus': 'hsl(226, 100%, 66%)',
'button-blue': 'hsl(226, 100%, 36%)',
'card-color': 'hsl(216, 8%, 13%)',
'section-color': 'hsl(216, 8%, 13%)',
'card-second': 'hsl(216, 8%, 17%)',
'card-dark': 'hsl(225, 8%, 10%)',
'nav': 'hsl(240, 7%, 9%)',
'explore-input': 'hsl(240, 1%, 20%)',
'lm-bg': 'hsl(240, 5%, 93%)',
},
padding: {
'1/2': '50%',
full: '100%',
},
textColor:{
'star': 'hsl(226, 100%, 66%)',
'head': 'hsl(226, 100%, 66%)',
'head-second': 'hsl(226, 100%, 56%)',
'input-focus': 'hsl(226, 100%, 66%)'
},
minWidth: {
'onehundred': '100%',
'ninty': '90%',
'eighty': '80%',
'fifty': '50%',
'forty': '40%',
'thirtythree': ': 33.333333%',
},
maxWidth: {
'onehundred': '100%',
'ninty': '90%',
'sixty': '60%',
'forty': '40%',
'eighty': '80%',
'fifty': '50%',
'fortyFive': '45%',
'thirtythree': ': 33.333333%',
},
height: {
'onehundred': '100%',
'nintyFive': '95%',
'ninty': '90%',
'eighty': '80%',
'seventy': '70%',
'sixty': '60%',
'fifty': '50%',
'fortyFive': '45%',
'forty': '40%',
'thirty': '30%',
'twenty': '20%',
},
width: {
'onehundred': '100%',
'nintyfive': '94%',
'nintyfour': '94%',
'nintythree': '93%',
'ninty': '90%',
'eighty': '80%',
'seventy': '70%',
'fifty': '50%',
'forty': '40%',
'thirty': '30%',
},
top: {
'ninty': '90%',
'forty': '40%',
'eighty': '80%',
'fifty': '50%',
},
maxHeight: {
'onehundred': '100%',
'ninty': '90%',
'sixty': '60%',
'forty': '40%',
'eighty': '80%',
'fifty': '50%',
'fortyFive': '45%',
'thirtythree': ': 33.333333%',
},
minHeight: {
'onehundred': '100%',
'ninty': '90%',
'sixty': '60%',
'forty': '40%',
'eighty': '80%',
'fifty': '50%',
'fortyFive': '45%',
'thirtythree': ': 33.333333%',
},
},
},
plugins: [
require('daisyui'),
require('@tailwindcss/line-clamp'),
],
}