-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
80 lines (78 loc) · 1.96 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
import defaultTheme from 'tailwindcss/defaultTheme';
const config: Config = {
darkMode: 'media',
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./lib/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
boxShadow: {
sm: '0 5px 10px rgba(0, 0, 0, 0.12)',
md: '0 8px 30px rgba(0, 0, 0, 0.12)',
},
colors: {
blue: {
200: '#E6EFFE',
500: '#99A8EA',
800: '#084FD4',
},
purple: {
200: '#F0E5FB',
500: '#BF96F0',
800: '#790BE0',
},
green: {
200: '#EBFAF8',
500: '#86CCCB',
800: '#1E6B65',
},
red: {
200: '#FCE8F1',
500: '#EE8EB5',
800: '#D11B67',
},
yellow: {
200: '#FFFBE6',
500: '#FFF700',
800: '#615200',
},
accent: {
1: '#FAFAFA',
2: '#EAEAEA',
3: '#333',
},
success: '#0070F3',
cyan: '#79FFE1',
},
content: {
bug: 'url("/assets/icons/bug.svg")',
'bug-dark': 'url("/assets/icons/bug-dark.svg")',
exclamation: 'url("/assets/icons/exclamation.svg")',
language: 'url("/assets/icons/language.svg")',
'language-dark': 'url("/assets/icons/language-dark.svg")',
},
fontFamily: {
title: ['var(--font-openSauceBlack)', 'sans-serif'],
heading: ['var(--font-openSauce)', 'sans-serif'],
headingSemi: ['var(--font-openSauceSemi)', 'sans-serif'],
body: ['Nunito Sans', 'sans-serif'],
},
fontSize: {
'5xl': '2.5rem',
'6xl': '2.75rem',
'7xl': '4.5rem',
'8xl': '6.25rem',
},
screens: {
xs: '475px',
...defaultTheme.screens,
},
},
},
plugins: [],
};
export default config;