-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (55 loc) · 1.28 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
51
52
53
54
55
56
/* eslint-disable @typescript-eslint/no-var-requires */
const { fontFamily } = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'media',
theme: {
fontSize: {
xs: '0.8rem',
sm: '0.875rem',
base: '1rem',
lg: '1.125rem',
xl: '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
},
extend: {
aspectRatio: {
'article-image': '2 / 1',
},
objectPosition: {
'center-top': 'center top',
},
fontFamily: {
VarsityTeam: ['var(--font-varsity-team)', ...fontFamily.sans],
Roboto: ['var(--font-roboto)', ...fontFamily.sans],
},
colors: {
appBgColor: "#FCF0E2",
infoColor: "#FEF4D8",
'green': "#3F802B",
'booking-blue': "#013b96",
'blue': "#385e80",
'light-blue': "#11a1e2"
},
lineHeight: {
hero: '4.5rem',
},
spacing: {
'xxs': '0.3125rem',
'xs': '0.625rem',
's': '0.9375rem',
'm': '1.25rem',
'l': '1.5625rem',
'xl': '1.875rem',
'2xl': '2.5rem',
'3xl': '3.75rem',
'4xl': '5rem',
}
},
},
plugins: [],
};