-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (57 loc) · 1.79 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
/** @type {import('tailwindcss').Config} */
// TODO: This + a few other components were largely copied from utdnebula/platform - might be worth publishing some of those packages for use in this + other projects
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: {
backgroundImage: {
'brand-gradient': "url('/gradient.png')",
'dark-gradient':
'linear-gradient(135deg, rgba(21, 21, 21, 0.35) 62.50%, rgba(21, 21, 21, 0.00) 100%)',
'gradient-radial': 'radial-gradient(circle closest-side, var(--tw-gradient-stops))',
},
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)
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: ['var(--font-kallisto)', 'Roboto', 'sans-serif'],
inter: ['var(--font-inter)', 'Roboto', 'sans-serif'],
},
width: {
wide: '32rem',
},
},
},
plugins: [],
};