-
Notifications
You must be signed in to change notification settings - Fork 7
/
tailwind.config.js
47 lines (47 loc) · 1.22 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 = {
important: true,
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
haiti: '#090b2c', // brand black
persimmon: {
50: '#ffe5de',
100: '#ffcabd',
200: '#ffb09d',
300: '#ff947e',
400: '#ff7760',
500: '#ff5743', // brand accent, danger
600: '#d14a39',
700: '#a43d2e',
800: '#793025',
900: '#51231b',
},
royal: '#573dff', // brand secondary (dark)
royalDark: '#3c2ab2',
cornflower: {
50: '#eae4ff',
100: '#d3caff', // ~periwinkle
200: '#bcb0fe',
300: '#a297fd',
400: '#857efc',
500: '#6266fa', // brand primary
600: '#5455cc',
700: '#45449f', // ~royal
800: '#363475',
900: '#28254d',
},
periwinkle: '#c2c8ff', // brand secondary (light)
shade: '#101828', // drop shadow color from shipfaster ui
},
fontFamily: {
kallisto: ['Kallisto', 'Roboto', 'sans-serif'],
},
},
fontFamily: {
main: ['Inter', 'sans-serif'],
},
},
plugins: [],
};