-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
74 lines (74 loc) · 1.73 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./node_modules/flowbite-react/**/*.js"
],
theme: {
extend: {
colors: {
"cyan-blue": "#023E8A",
"light-white": "rgba(255, 255, 255, 0.17)",
"red-me": "#FF0000",
"grey": "#F8F8FF",
"cambg": "#CAF0F8",
"camiconbg": "#0096C7",
"repsbg": "#9500AD",
"speedbg": "#E25100",
"btnstart": "#03045E",
"btnstop": "#CC0000",
"#03045E": "#03045E",
"#D9D9D9": "#D9D9D9",
"timberwolf": "#D3D3D3",
"#03045E": "#03045E",
"#00B4D8": "#00B4D8",
"#B6B6B6": "#B6B6B6",
"#48CAE4": "#48CAE4",
"#C5C5C5": "#C5C5C5",
},
height:{
"25vh": "25vh",
"35vh": "35vh",
"45vh": "45vh",
"55vh": "55vh",
"65vh": "65vh",
"5%": "5%",
"90%": "90%",
"95%": "95%",
},
width:{
"c-width": "1920px",
"95%": "95%",
"90%": "90%",
"350px": "350px",
"10%": "10%",
"70%": "70%",
"90%": "90%",
"550px": "550px",
},
zIndex: {
'1': '1',
'2': '2',
},
boxShadow: {
'cshadow': '0 0 8px 4px rgba(0, 0, 0, 0.1)',
'#023E8A': '0 0 8px 4px #023E8A'
},
backgroundImage: {
'dash-banner': "url('/src/img/banner.jpg')",
'drinkwater': "url(/src/img/drinkwater.jpg)",
},
screens: {
'mobileM': '375px',
'mobileL': '425px',
'tablet': '768px',
'laptop': '1024px',
'laptopL': '1440px',
'desktop': '1920px',
},
},
},
plugins: [
require("flowbite/plugin")
],
}