-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
41 lines (41 loc) · 929 Bytes
/
tailwind.config.cjs
File metadata and controls
41 lines (41 loc) · 929 Bytes
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
module.exports = {
mode: 'jit',
content: ['./src/**/*.{html,js,svelte,ts}'],
plugins: [],
theme: {
extend: {
colors: {
malibu: {
DEFAULT: '#5DADFF',
50: '#FFFFFF',
100: '#FFFFFF',
200: '#D7EBFF',
300: '#AFD6FF',
400: '#86C2FF',
500: '#5DADFF',
600: '#2591FF',
700: '#0074EC',
800: '#0059B4',
900: '#003D7C',
},
shark: {
DEFAULT: '#242628',
50: '#7B8288',
100: '#71787E',
200: '#5E6368',
300: '#4B4F53',
400: '#373A3D',
500: '#242628',
600: '#090A0A',
700: '#000000',
800: '#000000',
900: '#000000',
},
},
fontFamily: {
sans: ['Montserrat', 'Inter var', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
},
},
};