-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
115 lines (115 loc) · 2.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
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}"
],
theme: {
extend: {
boxShadow: {
custom: "0px 0px 8px rgba(0, 0, 0, 0.30)"
},
/* Per review comment of i74, keep both the old and simplified colour palettes until the colours are streamlined */
/* Old palette */
colors: {
primary: {
50: "#f0fdfa",
100: "#cbfcf3",
200: "#97f8e8",
300: "#5bedda",
400: "#29d8c7",
500: "#10bcae",
600: "#098d85",
700: "#0c7973",
800: "#0f605d",
900: "#124f4d",
950: "#033030"
},
secondary: {
50: "#f9fefd",
100: "#cef9f1",
200: "#9cf3e5",
300: "#63e5d5",
400: "#33cec0",
500: "#19b3a7",
600: "#119088",
700: "#12736e",
800: "#145b59",
900: "#154c4a",
950: "#052e2e"
},
grey: {
50: "#f4f7f7",
100: "#e2e9eb",
200: "#c8d4d9",
300: "#a1b6bf",
400: "#74919c",
500: "#56727e",
600: "#4c626e",
700: "#42525c",
800: "#3b474f",
900: "#353e44",
950: "#20272c"
},
darkAqua: {
50: "#f2fbfa",
100: "#d2f5ef",
200: "#a5eae2",
300: "#70d8cf",
400: "#43beb7",
500: "#29a39d",
600: "#1e807e",
700: "#1c6968",
800: "#1b5454",
900: "#1b4646",
950: "#0a2729"
},
lightAqua: {
50: "#f1fafa",
100: "#dcf1ef",
200: "#a6dcdb",
300: "#8ed2d2",
400: "#59b6b7",
500: "#3d9b9d",
600: "#357f85",
700: "#31676d",
800: "#2f565b",
900: "#2b494e",
950: "#182f34"
},
/* Simplified palette */
app: {
primary: {
DEFAULT: "#098D85",
focus: "#035E58"
},
secondary: {
DEFAULT: "#DCF1EF",
focus: "#A6DCDB"
},
accent: {
DEFAULT: "#AACFEE",
focus: "#84B1D6"
},
base: {
100: "#F4F7F7",
200: "#56727E",
300: "224250"
}
}
},
animation: {
"reverse-spin": "reverse-spin 1s linear infinite"
},
keyframes: {
"reverse-spin": {
from: {
transform: "rotate(360deg)"
}
}
}
},
plugins: [require("tailwind-scrollbar")]
}
};