-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 855 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 855 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
33
34
35
36
37
38
39
40
41
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
'./app.vue',
],
theme: {
extend: {
colors: {
'green': {
100: '#E9F6F6',
200: '#D4EEED',
300: '#BEE5E3',
400: '#A9DDDA',
500: '#93D4D1',
600: '#7ECBC8',
700: '#69C3BF',
800: '#53BAB5',
900: '#3EB2AC',
DEFAULT: '#28A9A3',
},
'gh-purple': {
DEFAULT: '#5b64a8',
},
'base-navy': {
DEFAULT: '#2f4259',
},
'kurokamome-yellow': {
DEFAULT: '#ebad33',
}
}
},
},
plugins: [
// require('@tailwindcss/forms')
],
}