-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
70 lines (70 loc) · 1.41 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
primary: {
100: '#ffccd6',
200: '#ff9aac',
300: '#ff6783',
400: '#ff3559',
500: '#ff0230',
600: '#cc0226',
700: '#99011d',
800: '#660113',
900: '#33000a',
DEFAULT: '#ff0230'
},
'clean-white': '#FFFFFF',
'darkest-dark': '#000000',
'clean-dark': {
100: '#cfcfcf',
200: '#a0a0a0',
300: '#707070',
400: '#414141',
500: '#111111',
600: '#0e0e0e',
700: '#0a0a0a',
800: '#070707',
900: '#030303',
DEFAULT: '#111111'
},
delorean: {
100: '#e1e1e1',
200: '#c4c4c4',
300: '#a6a6a6',
400: '#898989',
500: '#6b6b6b',
600: '#565656',
700: '#404040',
800: '#2b2b2b',
900: '#151515',
DEFAULT: '#6b6b6b'
},
concrete: {
100: '#eaeaea',
200: '#d6d6d6',
300: '#c1c1c1',
400: '#adadad',
500: '#989898',
600: '#7a7a7a',
700: '#5b5b5b',
800: '#3d3d3d',
900: '#1e1e1e',
DEFAULT: '#989898'
},
gray: colors.neutral
},
fontFamily: {
sans: ['Plus Jakarta Sans']
},
transitionProperty: {
border:
'border-width, border-bottom-width, border-left-width, border-right-width, border-top-width'
}
}
},
plugins: []
};