-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (41 loc) · 963 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (41 loc) · 963 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}", // páginas do app
"./components/**/*.{js,ts,jsx,tsx}", // todos os componentes
"./src/**/*.{js,ts,jsx,tsx}", // caso você use src
],
theme: {
extend: {
colors: {
blue: {
DEFAULT: "#3852E7",
dark: "#132B95",
light: "#DAF0FF",
lightest: "#FBFDFF",
},
green: {
DEFAULT: "#38e977",
dark: "#144827",
mid: "#38e9768f",
},
gray: {
DEFAULT: "#838383",
darkest: "2c2c2c",
dark: "#4c4c4c",
light: "#c7c7c7",
lightest: "#e5e5e5",
w: "#f0f0f0",
},
black: "#0f1417",
white: "#fdfdfdff",
yellow: "#fdb94b",
red: "#ff4d4f",
boxShadow: {
"md-gray-light": "#c7c7c7",
},
},
},
},
plugins: [],
};