-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
69 lines (68 loc) · 2.02 KB
/
tailwind.config.js
File metadata and controls
69 lines (68 loc) · 2.02 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{vue,js,ts}',
'./views/**/*.{vue,js,ts}',
'./app.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
'./composables/**/*.{js,ts}',
],
darkMode: 'class',
future: { hoverOnlyWhenSupported: true },
theme: {
screens: {
'xs-300': '300px',
'xs-350': '350px',
'xs-370': '370px',
...require('tailwindcss/defaultTheme').screens,
},
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
crumb: ['Crumb'],
},
colors: {
yellow: { primary: '#ffeaa7', secondary: '#ffe17a' },
blue: { primary: '#a8c8ff', secondary: '#8ab4ff', tertiary: '#c4dcff' },
orange: { primary: '#ffb894', secondary: '#ffa172', tertiary: '#ffc4a8' },
green: { primary: '#24d651', secondary: '#21cc4a', tertiary: '#1fb844' },
red: { primary: '#ff622d', secondary: '#ff4500', error: '#b91c1c' },
white: { primary: '#ffffff', secondary: '#dddddd' },
black: { primary: '#000000', secondary: '#121212' },
accent: {
blue: '#c4dcff',
orange: '#ffc4a8',
red: '#ffb2b2',
lavender: '#e3d1ff',
rose: '#ffcce6',
sage: '#b8e2d2',
},
light: {
'background': '#ECF0F1',
'game-background': '#ECF0F1',
'text-primary': '#121212',
'text-secondary': '#121212',
'border-primary': '#000000',
'popover-bg': '#FFFFFF',
'input-background': '#FFFFFF',
},
dark: {
'background': '#121212',
'game-background': '#151515',
'text-primary': '#DDDDDD',
'text-secondary': '#CCCCCC',
'border-primary': '#272727ff',
'popover-bg': '#2A2A2A',
'input-background': '#151515',
},
},
fontSize: {
'2.5xl': '1.75rem',
'3.5xl': '2rem',
'4.5xl': '2.75rem',
},
borderWidth: { 3: '3px' },
},
},
}