This repository has been archived by the owner on Dec 18, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
56 lines (54 loc) · 1.79 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
const colors = require('tailwindcss/colors')
module.exports = {
purge: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.css',
'./app/Http/Controllers/HomeController.php',
],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
'plex': ['IBM Plex Mono', 'ui-sans-serif', 'system-ui'],
'flow-rounded': ['flow-rounded'],
'flow-circular': ['flow-circular'],
'flow-block': ['flow-block'],
},
colors: {
transparent: 'transparent',
current: 'currentColor',
gray: colors.warmGray,
lime: colors.lime,
cyan: colors.cyan,
amber: colors.amber,
red: colors.red,
teal: colors.teal,
'light-blue': colors.lightBlue,
rose: colors.rose,
orange: colors.orange,
fuchsia: colors.fuchsia,
violet: colors.violet,
'paige': {
DEFAULT: '#BDA685',
'50': '#F5F2ED',
'100': '#EFEAE2',
'200': '#E3D9CB',
'300': '#D6C8B3',
'400': '#CAB79C',
'500': '#BDA685',
'600': '#AB8E64',
'700': '#8F744D',
'800': '#6E593B',
'900': '#4D3E29'
},
},
},
},
variants: {
extend: {
backgroundImage: ['hover'],
},
},
plugins: [],
}