generated from christensenjo/nuxt-flowbite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
97 lines (96 loc) · 2.25 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
darkMode: 'class',
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
"./node_modules/flowbite/**/*.{js,ts}",
],
theme: {
extend: {
dropShadow: {
'blood-lg': '0 35px 35px rgba(125, 12, 12, 0.25)',
},
colors: {
primary: {
50: '#f4f6fb',
100: '#e7edf7',
200: '#cad8ed',
300: '#9cb7dd',
400: '#6691ca',
500: '#4374b4',
600: '#325b97',
700: '#29497b',
800: '#253f67',
900: '#243757',
950: '#182339',
DEFAULT: '#243757',
},
'fortress': {
50: '#f4f6fb',
100: '#e7edf7',
200: '#cad8ed',
300: '#9cb7dd',
400: '#6691ca',
500: '#4374b4',
600: '#325b97',
700: '#29497b',
800: '#253f67',
900: '#243757',
950: '#182339',
DEFAULT: '#243757',
},
'blood': '#7d0c0c',
'parchment': {
50: '#f8f7f2',
100: '#ece9d9',
200: '#dad5b7',
300: '#c2b787',
400: '#b3a36c',
500: '#a78e59',
600: '#93764c',
700: '#7b5e42',
800: '#664e3a',
900: '#554132',
950: '#2f2219',
DEFAULT: '#dad5b7',
},
'scroll': {
50: '#f8f7f4',
100: '#efede5',
200: '#ded9ca',
300: '#c2b79b',
400: '#b3a384',
500: '#a48e6b',
600: '#977e5f',
700: '#7e6850',
800: '#675545',
900: '#54463a',
950: '#2c241e',
DEFAULT: '#c2b79b',
},
'tome': {
50: '#f4f4f2',
100: '#e4e3dd',
200: '#cbc9bd',
300: '#ada997',
400: '#95907a',
500: '#86806c',
600: '#736b5b',
700: '#665e52',
800: '#514a42',
900: '#47413c',
950: '#282420',
DEFAULT: '#665e52',
},
},
},
},
plugins: [
require('flowbite/plugin')
],
}