-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind-another-portfolio.config.js
64 lines (62 loc) · 1.94 KB
/
tailwind-another-portfolio.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
57
58
59
60
61
62
63
64
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./resources/views/themes/another-portfolio/**/*.blade.php',
],
darkMode: 'class',
theme: {
extend: {
/*fontFamily: {
karla: ['Karla', ...defaultTheme.fontFamily.sans],
},*/
colors: {
danger: colors.red,
success: colors.green,
warning: colors.yellow,
info: colors.blue,
primary: {
'50': '#fdf4f3',
'100': '#fce6e4',
'200': '#fbd1cd',
'300': '#f6b2ab',
'400': '#f1948a',
'500': '#e45d4f',
'600': '#d04132',
'700': '#af3326',
'800': '#912e23',
'900': '#792b23',
'950': '#41130e',
},
secondary: {
'50': '#F6FBF9',
'100': '#d4f3eb',
'200': '#a8e7d6',
'300': '#75d3bd',
'400': '#45b39d',
'500': '#2f9d89',
'600': '#237e6f',
'700': '#20655b',
'800': '#1e514a',
'900': '#1d443f',
'950': '#0b2825',
},
gray: {
'50': '#F6FBF9',
'100': '#d4f3eb',
'200': '#a8e7d6',
'300': '#75d3bd',
'400': '#45b39d',
'500': '#2f9d89',
'600': '#237e6f',
'700': '#20655b',
'800': '#1e514a',
'900': '#1d443f',
'950': '#0b2825',
},
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
}