-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
95 lines (94 loc) · 2.34 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
backgroundClip: ["hover", "focus"],
aspectRatio: {
"4/3": "4/3",
},
colors: {
text: {
50: "#f7ebfa",
100: "#eed7f4",
200: "#ddafe9",
300: "#cd87de",
400: "#bc5fd3",
500: "#ab37c8",
600: "#892ca0",
700: "#672178",
800: "#441650",
900: "#220b28",
950: "#110514",
},
background: {
50: "#f7ebfa",
100: "#eed6f5",
200: "#ddadeb",
300: "#cd85e0",
400: "#bc5cd6",
500: "#ab33cc",
600: "#8929a3",
700: "#671f7a",
800: "#441452",
900: "#220a29",
950: "#110514",
},
primary: {
50: "#eefaeb",
100: "#ddf4d7",
200: "#bbeaae",
300: "#99df86",
400: "#77d45e",
500: "#56c936",
600: "#44a12b",
700: "#337920",
800: "#225115",
900: "#11280b",
950: "#091405",
},
secondary: {
50: "#f6ebfa",
100: "#edd7f4",
200: "#dcafe9",
300: "#ca87de",
400: "#b85fd3",
500: "#a637c8",
600: "#852ca0",
700: "#642178",
800: "#431650",
900: "#210b28",
950: "#110514",
},
accent: {
50: "#eefaeb",
100: "#ddf4d7",
200: "#bbeaae",
300: "#99df86",
400: "#77d45e",
500: "#56c936",
600: "#44a12b",
700: "#337920",
800: "#225115",
900: "#11280b",
950: "#091405",
},
},
boxShadow: {
card: "0px 35px 120px -15px #211e35",
},
fontFamily: {
OpenSans: ["Open Sans", " sans-serif"],
NotoSans: ["Noto Sans", " sans-serif"],
},
backgroundImage: {
herobg: "url('/src/assets/herobg.webp')",
herobgMobile: "url('/src/assets/herobgMobile.webp')",
alumini: "url('/src/assets/TimelineWebsite.webp')",
aluminiMobile: "url('/src/assets/TimelineMobile.webp')",
TeamImg: "url('/src/assets/teamImg.jpg')",
},
},
},
plugins: ["daisyui"],
};