-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (44 loc) · 1.23 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
const defaultTheme = require('tailwindcss/defaultTheme');
const typographyTheme = require('./typography-theme');
const colors = require('tailwindcss/colors');
module.exports = {
purge: [
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
],
theme: {
container: {
center: true,
},
extend: {
colors: {
gray: colors.warmGray,
yellow: {
DEFAULT: '#FDEE30',
},
white: '#FEFEFE',
black: '#000000'
},
spacing: {
'104': '26rem',
'110': '28rem',
'118': '30rem',
'126': '32rem',
'132': '34rem',
'140': '36rem',
},
fontFamily: {
sans: ['Roboto Condensed', ...defaultTheme.fontFamily.sans],
second: ['Cabin', ...defaultTheme.fontFamily.serif]
},
typography: typographyTheme
},
},
variants: {
opacity: ['responsive', 'hover', 'focus', 'disabled'],
},
plugins: [
require('@tailwindcss/typography'),
],
darkMode: 'media',
};