-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (47 loc) · 1.4 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./src/**/*.{html,js}",
"./node_modules/tw-elements/dist/js/**/*.js",
],
theme: {
extend: {
colors: {
"btn-disabled": "#696969",
"atn-disabled": "#d9d9d9",
"atn-disabled-text": "#474747",
"sga-red": "#D41B2C",
"sga-red-hover": "#b51727",
"sga-red-active": "#87121d",
"transparent-gray": "#ECECEC52",
"alert-yellow": "#FFEDC0",
"tag-blue": "#8DD8E6",
"tag-green": "#88BB77",
"attendance-text-green": "#008000",
"attendance-green": "#77DD77",
"attendance-yellow": "#FEC12F",
"attendance-red": "#D41B2C",
"attendance-grey": "#767676",
"attendance-text-yellow": "#D96B06",
},
backgroundImage: {
"cooper-mobile": "url(../src/assets/cooper-mobile.jpg)",
"cooper-mobile-festive": "url(../src/assets/cooper-mobile-festive.png)",
"cooper-big-boy": "url(../src/assets/cooper-big-boy.jpg)",
isec: "url('../src/assets/Isec.png')",
},
fontFamily: {
montserrat: ["Montserrat"],
sans: ['"Open Sans"'],
},
fontSize: {
xxs: "0.625rem",
},
dropShadow: {
"event-dropdown": "0 12px 12px rgba(0, 0, 0, 0.3)",
},
},
},
plugins: [require("tw-elements/dist/plugin")],
};