forked from M6-T11-GRUPO4/motors-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
58 lines (55 loc) · 1.57 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{tsx,ts}"],
theme: {
extend: {
backgroundImage: {
'risco': "url('/src/image/risco.png')",
'carro': "url('/src/image/carro2.png')"
},
fontFamily: {
'lexend': ['Lexend',"sans-serif"],
'inter': ['Inter',"sans-serif"],
},
colors: {
"-brand1": "#4529E6",
"-brand2": "#5126EA",
"-brand3": "#B0A6F0",
"-brand4": "#EDEAFD",
"-grey-0": "#0B0D0D",
"-grey-1": "#212529",
"-grey-2": "#495057",
"-grey-3": "#868E96",
"-grey-4": "#ADB5BD",
"-grey-5": "#CED4DA",
"-grey-6": "#DEE2E6",
"-grey-7": "#E9ECEF",
"-grey-8": "#F1F3F5",
"-grey-9": "#F8F9FA",
"-grey-10": "#FDFDFD",
"-white-fixed": "#FFFFFF",
"-alert-1": "#CD2B31",
"-alert-2": "#FDD8D8",
"-alert-3": "#FFE5E5",
"-sucess-1": "#18794E",
"-sucess-2": "#CCEBD7",
"-sucess-3": "#DDF3E4",
"-random-1": "#E34D8C",
"-random-2": "#C04277",
"-random-3": "#7D2A4D",
"-random4": "#7000FF",
"-random5": "#6200E3",
"-random6": "#36007D",
"-random7": "#349974",
"-random8": "#2A7D5F",
"-random9": "#153D2E",
"-random10": "#6100FF",
"-random11": "#5700E3",
"-random12": "#30007D",
"-random13": "rgba(0, 0, 0, 0.29)",
"-random14": "#000000b3",
},
},
},
plugins: [require("tailwindcss"), require("autoprefixer")],
}