-
Notifications
You must be signed in to change notification settings - Fork 34
/
tailwind.config.js
40 lines (40 loc) · 1 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
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
screens: {
ssm: '360px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
extend: {
colors: {
background: '#1f1f1f',
primary: '#f43f5e',
secondary: '#2f2f2f',
['highlight']: '#3f3f3f',
['deep-black']: '#1a1a1a',
},
listStyleType: {
circle: 'circle',
},
},
fontFamily: {
primary: 'Nunito, sans-serif',
secondary: 'League Spartan, sans-serif',
},
},
corePlugins: {
aspectRatio: false,
},
plugins: [
require('tailwind-scrollbar-hide'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/aspect-ratio'),
],
};