-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (34 loc) · 874 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
35 lines (34 loc) · 874 Bytes
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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/**/*.html', './src/**/*.md'],
theme: {
screens: {
xs: '375px',
mob: '450px',
sm: '640px',
md: '768px',
tab: '860px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
hd: '1920px',
},
extend: {
fontFamily: {
sans: ['Lato', ...defaultTheme.fontFamily.sans],
minecraft: ['Minecraft', ...defaultTheme.fontFamily.mono],
heading: ['Lilita One', ...defaultTheme.fontFamily.sans],
},
colors: {
'header-start': '#af4890',
'header-end': '#4b51b5',
},
backgroundImage: {
'tile-dark': 'url("/images/bg_tile.png")',
promo: 'url("/images/promo.png")',
},
},
},
variants: {},
plugins: [require('@tailwindcss/typography')],
};