forked from LIBCAS/hiko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (38 loc) · 1.2 KB
/
tailwind.config.js
File metadata and controls
40 lines (38 loc) · 1.2 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
const colors = require('tailwindcss/colors')
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
],
theme: {
extend: {
colors: {
// Include default colors
lightBlue: colors.sky,
green: colors.green,
emerald: colors.emerald,
red: colors.red,
gray: colors.stone,
// Custom primary colors
primary: colors.violet['700'],
'primary-light': colors.violet['400'],
'primary-dark': colors.violet['900'],
},
fontFamily: {
sans: [
'Atkinson Hyperlegible',
...defaultTheme.fontFamily.sans,
],
},
outline: {
primary: '2px solid ' + colors.violet['700'],
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
};