-
Notifications
You must be signed in to change notification settings - Fork 17
/
tailwind.config.js
50 lines (50 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'components/**/*.{vue,js}',
'layouts/**/*.vue',
'pages/**/*.vue',
'composables/**/*.{js,ts}',
'plugins/**/*.{js,ts}',
'App.{js,ts,vue}',
'app.{js,ts,vue}',
'nuxt.config.js',
],
theme: {
extend: {
colors: {
ranko: {
50: '#FCE5C1',
100: '#FBDDAD',
200: '#F9CD87',
300: '#F7BC60',
400: '#F5AC39',
500: '#F39C12',
600: '#C37B0A',
700: '#8E5A07',
800: '#583804',
900: '#231602',
},
vue: '#42b883',
laravel: '#f55247',
html5: '#e34f26',
css3: '#3C99DC',
},
},
},
plugins: [
require('tailwindcss-dark-mode'),
],
darkMode: 'class',
variants: {
backgroundColor: [
'dark',
'dark-hover',
'dark-group-hover',
'dark-even',
'dark-odd',
],
borderColor: ['dark', 'dark-focus', 'dark-focus-within'],
textColor: ['dark', 'dark-hover', 'dark-active'],
},
}