-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
47 lines (46 loc) · 1.26 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} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
darkMode: 'class',
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
ice: '#e7eaf4', // dce4f0
navy: '#18222e',
dark: '#252832',
darker: '#1e2028',
darkest: '#1a1c23',
light: '#f2f4f7',
lighter: '#f7f7f7',
lightest: '#ffffff',
primary: '#4080c0',
secondary: '#5070b0',
tertiary: '#c084fc',
twitch: '#6441a5',
twitter: '#1da1f2',
youtube: '#ff0000',
github: '#333333',
linktree: '#40e09e',
},
maxWidth: {
screen: '100vw',
'8xl': '88rem',
'9xl': '96rem',
},
fontSize: {
xxs: '0.6rem',
},
boxShadow: {
'inner-md': 'inset 0px 0px 2px 2px rgb(0 0 0 / 0.1)',
'inner-xl': 'inset 0px 0px 4px 4px rgb(0 0 0 / 0.1)',
},
fontFamily: {
prose: ['Inter', ...defaultTheme.fontFamily.sans],
lexend: ['Lexend', ...defaultTheme.fontFamily.sans],
code: ['Fira Code', ...defaultTheme.fontFamily.mono],
},
},
},
plugins: [require('@tailwindcss/forms')],
}