-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
52 lines (45 loc) · 922 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
52 lines (45 loc) · 922 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./assets/**/*.js",
"./templates/**/*.html.twig",
],
theme: {
extend: {
colors: {
darkBlue: "#1E293A",
lightBlue: "#5d7a97",
lightGreen: "#00FFC2",
viletPer: "#de15da",
darkGreen: "#005DCD",
pink: "#FF2896",
orange: "#FF9B65",
fullPink: "#F2EDED",
purpleM: "#9D18A9",
red: "#B50505",
green: "#05B541",
"text-color": "var(--text-color)"
},
borderRadius: {
'2xl': '2rem',
'50xl': '50rem',
},
width: {
'26': '26%',
'300': '300px',
'343' : '343px',
},
height:{
'86' :'86px',
'278':'278px',
},
margin: {
'15': '15px',
},
letterSpacing: {
"small": "0.1rem",
}
},
},
plugins: [],
}