-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
109 lines (103 loc) · 2.75 KB
/
tailwind.config.js
File metadata and controls
109 lines (103 loc) · 2.75 KB
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} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
screens: {
'mobile' : '375px',
'tabletLand' : '1024px',
'tabletPort' : '768px',
'laptop' : '1366px',
'desktop': '1920px',
},
colors: {
'transparent': 'transparent',
'white': '#ffffff',
'black': '#000000',
'redSaber': '#EB212E',
'greenSaber': '#2FF924',
'purpleSaber': '#b100cd',
'blueSaber': '#2E67F8',
'yellowSaber': '#FFF36D',
'orangeSaber': '#ED820E',
'chewbacca': '#945222',
'nav': '#181818',
'581E85' : '#581E85',
'18082f' : '#18082f',
'dark-bg': '#451868',
'BA66E9' : '#BA66E9',
'3B145A' : '#3B145A',
'481268' : '#481268',
'320D4E' : '#320D4E',
'511C77' : '#511C77',
'230B36' : '#230B36',
'3F084B' : '#3F084B',
'230B36' : '#230B36',
'230B36ttt' : '#h230B36 transparent transparent transparent',
'220A39ttt' : '#220A39 transparent transparent trasnparent',
'220A39' : '#220A39',
'310943' : '#310943',
'310943ttt' : '#310943 transparent transparent transparent',
'471165' : '#471165',
'3A1559' : '#3A1559',
'41155F': '#41155F',
'451663' : '#451663',
'260E41' : '#260E41',
'33114F' : '#33114F',
'271145' : '271145',
},
fontFamily: {
'dosis': ['"dosis"', '"sans-serif"'],
'jedi':['"Starjedi"']
},
extend: {
boxShadow: {
redSaber: '1px 1px 6px 6px #EB212E',
greenSaber: '1px 1px 6px 6px #2FF924',
purpleSaber: '1px 1px 6px 6px #b100cd',
blueSaber: '1px 1px 6px 6px #2E67F8',
yellowSaber: '1px 1px 6px 6px #FFF36D',
orangeSaber: '1px 1px 6px 6px #ED820E',
},
height: {
'2': '2px',
"220": '220px',
"240": '240px',
"290": '290px',
"260": '260px',
"300": '300px',
'540': '540px',
'570': '570px',
},
width: {
'2': '2px',
'18': '18px',
'25': '25px',
"240": '240px',
"260": '260px',
"290": '249px',
"300": '300px',
'550': '550px',
'570': '570px',
},
borderRadius: {
'2': '2px',
'50': '50%',
},
zIndex: {
'2': '2',
},
backgroundImage: {
'charactersBg': "url('../../static/images/charactersBg.webp')",
'site': "url('../../static/images/stars.webp')",
'weapons': "url('../../static/images/weaponsBg.webp')",
'xwing': "url('../../static/images/shipsBg.webp')",
'planet': "url('../../static/images/planetsBg.webp')",
},
content: {
'blank': '',
},
},
},
plugins: [
],
}