-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (35 loc) Β· 946 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
//Colors Titles
"title_color": '#ffffff',
//Colors Sections
"blue_section": '#1C2430b0',
"green_section": "#2B6E6233",
"red_section": "#453231",
"purple_section": "#381f5274",
//Colors Subtitles
"blue_text": "#86b6feb0",
"green_text": "#44AC99",
"red_text": "#d07d77",
"purple_text": "#c296fd",
//colors words sections
"blue_word_section": "#434b59",
"purple_word_section": "#66428e74",
"green_word_section": "#267c6e5d",
"red_word_section": "#d5777764",
//colors components
"back_button": "#5cafad58",
"accordition_color": "#ffdfb6",
"icon_color": "#5cafad"
},
},
},
plugins: [],
}