-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind-workspace-preset.js
61 lines (60 loc) · 1.29 KB
/
tailwind-workspace-preset.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
// @ts-check
const colors = require('tailwindcss/colors')
/**
* @type {import('tailwindcss').Config}
**/
module.exports = {
darkMode: 'class',
theme: {
extend: {
colors: {
azure: colors?.blue ?? {},
orange: {
50: '#ffdc32',
100: '#ffd228',
200: '#ffc81e',
300: '#ffbe14',
400: '#ffb40a',
500: '#feaa00',
600: '#f4a000',
700: '#ea9600',
800: '#e08c00',
900: '#d68200',
},
bluer: {
50: '#324f8f',
100: '#284585',
200: '#1e3b7b',
300: '#143171',
400: '#0a2767',
500: '#001d5d',
600: '#001353',
700: '#000949',
800: '#00003f',
900: '#000035',
},
blue: {
50: '#325874',
100: '#284e6a',
200: '#1e4460',
300: '#143a56',
400: '#0a304c',
500: '#002642',
600: '#001c38',
700: '#00122e',
800: '#000824',
900: '#00001a',
},
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
require('tailwindcss-scoped-groups'),
],
}