-
Notifications
You must be signed in to change notification settings - Fork 8
/
tailwind.config.js
59 lines (58 loc) · 1.24 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
57
58
59
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
module.exports = {
content: [
'./_includes/**/*.html',
'./_layouts/**/*.html',
'./_posts/*.md',
'./*.html',
],
darkMode: false,
theme: {
colors: {
...colors,
stone: {
'50': '#f8f6f4',
'100': '#eeece6',
'200': '#ddd7cb',
'300': '#cec5b6',
'400': '#af9e88',
'500': '#9e8871',
'600': '#917965',
'700': '#796355',
'800': '#645248',
'900': '#52453c',
},
blue: {
'50': '#f0f9fb',
'100': '#d8eef5',
'200': '#b6deeb',
'300': '#84c6dc',
'400': '#4aa5c6',
'500': '#2e87ac',
'600': '#2a7093',
'700': '#275a77',
'800': '#284c62',
'900': '#254054',
},
gray: {
'50': '#f4f6f7',
'100': '#e2e7eb',
'200': '#c9d2d8',
'300': '#a4b3bc',
'400': '#778b99',
'500': '#5b6f7f',
'600': '#4f5e6b',
'700': '#444f5a',
'800': '#3d444d',
'900': '#25292e',
}
},
extend: {},
},
variants: {},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/line-clamp'),
],
}