forked from DirectoryLister/DirectoryLister
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (28 loc) · 842 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
29 lines (28 loc) · 842 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
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
module.exports = {
darkMode: 'class',
content: [
'app/resources/**/*.{js,scss}',
'app/src/**/*.php',
'app/views/**/*.twig',
],
theme: {
extend: {
colors: {
blue: colors.sky,
gray: colors.slate,
purple: colors.violet,
},
fontFamily: {
merriweather: ['Merriweather', ...defaultTheme.fontFamily.serif],
mono: ['Source Code Pro', ...defaultTheme.fontFamily.mono],
sans: ['Work Sans', ...defaultTheme.fontFamily.sans],
},
textColor: {
github: '#171515',
twitter: '#1DA1F2'
}
}
}
};