-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (52 loc) · 1.49 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./public/*.html"],
theme: {
extend: {
colors: {
primary: {
"marine-blue": "hsl(213, 96%, 18%)", // primary text
"purplish-blue": "hsl(243, 100%, 62%)", //tertiary text
"pastel-blue": "hsl(228, 100%, 84%)",
"light-blue": "hsl(206, 94%, 87%)", // step active background
"strawberry-red": "hsl(354, 84%, 57%)", // Error color
},
neutral: {
"cool-gray": "hsl(231, 11%, 63%)", //secondary text
"light-gray": "hsl(229, 24%, 87%)", //border
magnolia: "hsl(217, 100%, 97%)", // primary background
alabaster: "hsl(231, 100%, 99%)", // tertiary background
},
footerLink: "hsl(228, 45%, 44%)",
},
fontFamily: {
ubuntu: ["Ubuntu", "sans-serif"],
},
fontSize: {
html: "62.5%",
desktop: "75%",
land: "58%",
port: "55%",
},
screens: {
"large-desktop": "1800px", // 1800px
tl: "1200px", // tablet-landscape
tp: "900px", // tablet-portrait
p: "600px", // mobile
sp: "300px", // small-mobile
},
keyframes: {
// Menu bar
go: {
from: { transform: "translateX(0%)" },
to: { transform: "translateX(105%)" },
},
},
animation: {
// Menu bar animations
go: "go 0.3s cubic-bezier(1, 0, 0, 1) both",
},
},
},
plugins: [],
};