-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
50 lines (50 loc) · 1.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
41
42
43
44
45
46
47
48
49
50
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./features/**"
],
theme: {
screens: {
sm: '480px',
mt: '624px',
md: '768px',
lg: '976px',
xl: '1440px',
},
colors: {
blue: {
deep: 'hsl(211,84%,30%)',
dark: 'hsl(211,70%,34%,90%)',
light: 'hsl(228,70%,54%,90%)',
dark34: 'hsl(228,70%,54%,90%)',
dark26: 'hsl(228,70%,46%,90%)',
},
gray: {
dark: 'hsl(228,16%,24%)',
link: 'hsl(228,21%,32%)',
medium: 'hsl(228,21%,47%)',
light: 'hsl(228,26%,96%)',
},
white: 'hsl(228,6%,97%)',
black: 'hsl(228,6%,3%)',
transparent: 'hsla(0,0%,0%,0%)',
},
fontFamily: {
sans: ["Poppins", 'sans-serif'],
title: ['Dosis', 'sans-serif'],
subtitle: ['Montserrat', 'san-serif'],
},
extend: {
spacing: {
'128': '32rem',
'144': '36rem',
},
borderRadius: {
'4xl': '2rem',
}
},
},
plugins: [],
}