-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (43 loc) · 1018 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ['class'],
content: ['./pages/**/*.{js,ts,jsx,tsx,mdx}', './components/**/*.{js,ts,jsx,tsx,mdx}', './app/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
container: {
center: true,
padding: '15px',
},
screens: {
sm: '640px',
md: '768px',
lg: '960px',
xl: '1200px',
},
fontFamily: {
primary: 'var(--font-patrickHand)',
secondary: 'var(--font-bagelFatOne)',
},
extend: {
colors: {
black: '#141414',
orange: '#FFA03B',
gray: '#C8C8C8',
white: '#FFF',
purpure: '#B994FF',
yellow: '#FFDB14',
youtube: '#fe0032',
discord: '#5764f1',
twitch: '#8b45f6',
spotify: '#00d859',
instagram: '#FF5B00',
},
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)',
},
},
},
safelist: ['text-youtube', 'text-discord', 'text-twitch', 'text-spotify', 'text-instagram'],
plugins: [require('tailwindcss-animate')],
};