forked from Bergflix-Remake/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
79 lines (79 loc) · 1.97 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
const colors = require('tailwindcss/colors')
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: {
100: "#ffccd6",
200: "#ff9aac",
300: "#ff6783",
400: "#ff3559",
500: "#ff0230",
600: "#cc0226",
700: "#99011d",
800: "#660113",
900: "#33000a"
},
// 'primary': '#FF0230',
// 'nice-red': '#FF0230',
'clean-white': '#FFFFFF',
'darkest-dark': '#000000',
// 'clean-dark': '#111111',
'clean-dark': {
100: "#cfcfcf",
200: "#a0a0a0",
300: "#707070",
400: "#414141",
500: "#111111",
600: "#0e0e0e",
700: "#0a0a0a",
800: "#070707",
900: "#030303"
},
// 'delorean': '#6B6B6B',
delorean: {
100: "#e1e1e1",
200: "#c4c4c4",
300: "#a6a6a6",
400: "#898989",
500: "#6b6b6b",
600: "#565656",
700: "#404040",
800: "#2b2b2b",
900: "#151515"
},
// 'concrete': '#989898',
concrete: {
100: "#eaeaea",
200: "#d6d6d6",
300: "#c1c1c1",
400: "#adadad",
500: "#989898",
600: "#7a7a7a",
700: "#5b5b5b",
800: "#3d3d3d",
900: "#1e1e1e"
},
gray: colors.neutral
},
fontFamily: {
'sans': ['Plus Jakarta Sans'],
'inception': ['Inception'],
'upheaval': ['Upheaval Pro'],
},
transitionProperty: {
'border': 'border-width, border-bottom-width, border-left-width, border-right-width, border-top-width',
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/typography'),
],
},
safelist: [{
pattern: /(bg|border|text)-.+-(500|400)/,
variants: ['hover']
}],
};