-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
31 lines (31 loc) · 1.02 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
export default {
content: ["./index.html", "./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
"oasis-blue": "#C7E7E4", // navbar color
"tropical-cyan": "#4BB3A9", // button color
"light-gray": "#F9FAFB", // back button color
"darker-gray": "#EAECF0", // back button hover color
"darker-cyan": "#36817A", // link color
"darkest-cyan": "#2D6B65", // link hover color
"midnight-moss": "#0C0D0F", // text color
"gray-moss": "#667085", // footer color
"green-blue": "#C7E7E4", // footer border 1
"light-orange": "#FFD89F", // footer border 2
"lightest-cyan": "#EDF7F6", // skill hover button color
"light-cyan": "#86CCC5", // skill hover border color
},
fontFamily: {
sans: ["Lato", "Helvetica", "Arial", "sans-serif"],
},
backgroundImage: {
'tech-roles-bg': "url('./assets/tech-roles-bg.png')",
},
fontSize: {
'xxs': '0.75rem',
}
},
},
plugins: [],
};