-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (50 loc) · 1.25 KB
/
tailwind.config.js
File metadata and controls
51 lines (50 loc) · 1.25 KB
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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./layouts/**/*.html',
'./content/**/*.md',
'./assets/js/**/*.js',
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
container: {
padding: '2rem',
},
colors: {
primary: '#DD1C1A',
secondary: '#29086A',
neutral: '#F8F4FF',
lightpurple: '#F8F4FF',
},
lineHeight: {
'extra-loose': '2.5',
'12': '3rem',
},
fontSize: {
'xs': '0.75rem', // Extra Small
'sm': '0.875rem', // Small
'base': '1rem', // Base
'lg': '1.125rem', // Large
'xl': '1rem', // Extra Large
'1xl': '1rem', // 1 Extra Large
'2xl': '1.5rem', // 2 Extra Large
'special' : '1.50rem',
'3xl': '1.875rem', // 3 Extra Large
'4xl': '2.25rem', // 4 Extra Large
'5xl': '3rem', // 5 Extra Large
'6xl': '4rem', // 6 Extra Large
},
},
},
variants: {
extend: {
width: ['responsive'],
},
typography: ['dark'],
},
plugins: [require('@tailwindcss/typography')],
};