-
Notifications
You must be signed in to change notification settings - Fork 118
/
tailwind.config.js
108 lines (106 loc) · 2.42 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
fontFamily: {
sans: ['var(--font-main)'],
serif: ['Garamond', 'serif'],
mono: ['Courier New', 'monospace'],
},
screens: {
all: '1px',
xs: '480px',
...defaultTheme.screens,
},
extend: {
colors: {
black: '#010101',
white: '#ffffff',
gray: { ...defaultTheme.colors.gray, 150: '#EBEDF0', 250: '#404040', 350: '#6B6B6B' },
primary: {
50: '#E6EDF9',
100: '#CDDCF4',
200: '#A7C2EC',
300: '#82A8E4',
400: '#5385D2',
500: '#2764c1',
600: '#1D4685',
700: '#162A4A',
800: '#11213B',
900: '#0D192C',
},
accent: {
50: '#FAEAF8',
100: '#F2C1EA',
200: '#EA98DC',
300: '#E26ECE',
400: '#DA45C0',
500: '#D631B9',
600: '#C02CA6',
700: '#952281',
800: '#6B185C',
900: '#400E37',
},
red: {
100: '#EBBAB8',
200: '#DF8D8A',
300: '#D25F5B',
400: '#C5312C',
500: '#BF1B15',
600: '#AB1812',
700: '#85120E',
800: '#5F0D0A',
900: '#390806',
},
green: {
50: '#D3E3DB',
100: '#BED5C9',
200: '#93BAA6',
300: '#679F82',
400: '#3C835E',
500: '#27764d',
600: '#236A45',
700: '#1F5E3D',
800: '#17462E',
900: '#0F2F1E',
},
},
fontSize: {
xxs: '0.7rem',
xs: '0.775rem',
sm: '0.85rem',
md: '0.95rem',
},
spacing: {
88: '22rem',
100: '26rem',
112: '28rem',
128: '32rem',
144: '36rem',
},
borderRadius: {
none: '0',
sm: '0.20rem',
DEFAULT: '0.30rem',
md: '0.40rem',
lg: '0.50rem',
full: '9999px',
},
blur: {
xs: '3px',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;',
},
transitionProperty: {
height: 'height, max-height',
spacing: 'margin, padding',
},
maxWidth: {
'xl-1': '39.5rem',
},
},
},
plugins: [],
};