-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
75 lines (73 loc) · 1.77 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
import type { Config } from "tailwindcss"
const config: Config = {
content: [
"./src/**/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '1rem',
lg: 'rem',
xl: '1rem',
'2xl': '1.5rem',
},
screens: {
sm: "100%",
md: "100%",
lg: "1024px",
xl: "1232px",
},
},
fontFamily: {
'univers': ['"Univers LT Std"', 'system-ui', 'sans-serif'],
'laila': ['"Laila"', 'system-ui', 'sans-serif'],
'opensans': ['"Open Sans"', 'system-ui', 'sans-serif']
},
fontSize: {
'0': '0',
'xs': '0.625rem', //10px
'sm': '0.75rem', //12px
'm': '0.875rem', // 14px
'base': '1rem', //16px
'l': '1.125rem', // 18px
'xl': '1.25rem', //20px
'xxl': '1.5rem', //24px
'xxxl': '1.75rem', // 28px
'2xl': '1.875rem', // 30px
'3xl': '2rem', // 32px
'4xl': '2.25rem', // 36px
'5xl': '2.5rem', // 40px
'6xl': '3.125rem', // 50px
},
extend: {
colors: {
'primary': '#f7265d',
'default-black': '#363e44',
'color-secondary': '#FEEBF1',
'color-tertiary': '#ffbe21',
'color-neutral': '#5a6872',
'color-pink-500': '#fcbacc',
'red': '#cd0000',
'red-100': '#a70000',
'red-wine': '#31020E',
'gray': '#ccc',
'shadow-gray': '#f8f8f8',
'shadow-dark-gray': '#e7e7e7',
'gray-200': '#e9eaf0',
'light-pink': '#fff5f8',
'light-gray': '#5a6872',
'gray-100': '#f8f9f9'
},
maxWidth: {
'1/2': '50%',
},
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/typography")],
}
export default config