-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (31 loc) · 905 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (31 loc) · 905 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
30
31
32
const colors = require('tailwindcss/colors');
module.exports = {
content: [
'./crates/varela-command-serve/templates/**/*.hbs',
'./crates/varela-command-serve/src/templates/mod.rs',
],
darkMode: false,
theme: {
extend: {
colors: {
gray: colors.gray,
// https://breezezin.github.io/tailwind-color-palettes/
'blue-6': {
100: '#E3F2FD',
200: '#BBDEFB',
300: '#90CAF9',
400: '#64B5F6',
500: '#42A5F5',
600: '#2196F3',
700: '#1E88E5',
800: '#1565C0',
900: '#0D47A1'
}
},
},
},
variants: {},
plugins: [
require('@tailwindcss/forms'),
],
};