forked from raynerljm/wth-seeturtle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (42 loc) · 906 Bytes
/
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
module.exports = {
mode: 'jit',
purge: ["./pages//*.{js,ts,jsx,tsx}", "./components//*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
height: {
almost: 'calc(100vh - 96px)',
},
colors: {
'seeturtle': {
DEFAULT: '#003DD4',
'50': '#BACEFF',
'100': '#A1BCFF',
'200': '#6E98FF',
'300': '#3B73FF',
'400': '#084FFF',
'500': '#003DD4',
'600': '#002EA1',
'700': '#00206E',
'800': '#00113B',
'900': '#000208'
},
'lightblue': {
DEFAULT: '#F764B2',
},
'lightred': {
DEFAULT: '#6E98FF',
},
'dark90': {
DEFAULT: "#000c29",
}
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
],
};