-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtailwind.config.js
80 lines (79 loc) · 1.81 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
// Should mostly match styles/Color.ts
const colors = require('tailwindcss/colors')
module.exports = {
darkMode: 'class',
content: ['src/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: '#2E3338',
black50: '#939799',
white: '#ffffff',
gray: colors.gray,
blue: colors.blue,
red: colors.red,
yellow: colors.amber,
teal: colors.teal,
neutral: colors.neutral,
fuchsia: colors.fuchsia,
emerald: colors.emerald,
cyan: colors.cyan,
zinc: colors.zinc,
green: {
50: '#e8fbf3',
100: '#baf3db',
200: '#8cebc4',
300: '#5ee3ad',
400: '#2fdb95',
500: '#19d88a',
600: '#16c27c',
700: '#14ac6e',
800: '#119760',
900: '#0f8152',
950: '#0c6c45',
},
greengray: {
darkest: '#C5D0CA',
dark: '#D1DDD7',
DEFAULT: '#DEE8E2',
light: '#EDF8F1',
lightest: '#F7FCF9',
},
bluegray: {
DEFAULT: '#EAEFF0',
},
'primary-dark': '#02010A',
'primary-blush': '#FCD7FC',
},
fontFamily: {
sans: ['Roboto', 'sans-serif'],
serif: ['serif'],
mono: ['Roboto Mono', 'Courier New', 'monospace'],
fg: ['var(--font-founders-grotesk)'],
inter: ['Inter', 'sans-serif'],
},
fontSize: {
sm: ['15px', '20px'],
},
extend: {
spacing: {
46: '11.5rem',
100: '26rem',
112: '28rem',
128: '32rem',
144: '36rem',
},
borderRadius: {
'4xl': '2rem',
},
animation: {
'spin-slow': 'spin 3s linear infinite',
},
boxShadow: {
lg2: '0 8px 24px 0px rgba(2, 1, 10, 0.08)',
},
},
},
plugins: [],
}