Skip to content

Commit fa1fed9

Browse files
💄 Change colours based on the new design
1 parent 5f37666 commit fa1fed9

File tree

2 files changed

+43
-10
lines changed

2 files changed

+43
-10
lines changed

styles/globals.css

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,19 @@ html,
1919
body {
2020
padding: 0;
2121
margin: 0;
22-
font-family: Poppins, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
23-
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
22+
font-family:
23+
Poppins,
24+
-apple-system,
25+
BlinkMacSystemFont,
26+
Segoe UI,
27+
Roboto,
28+
Oxygen,
29+
Ubuntu,
30+
Cantarell,
31+
Fira Sans,
32+
Droid Sans,
33+
Helvetica Neue,
34+
sans-serif;
2435
}
2536

2637
a {
@@ -44,7 +55,7 @@ a {
4455
}
4556

4657
.button {
47-
@apply bg-gradient-to-r from-primary-1 via-primary-2 to-primary-3 text-black;
58+
/* @apply bg-gradient-to-r from-primary-1 via-primary-2 to-primary-3 text-black; */
4859
}
4960

5061
.btn-clip {

tailwind.config.js

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,34 @@ module.exports = {
88
theme: {
99
extend: {
1010
colors: {
11-
'primary-1': '#ffd74d',
12-
'primary-2': '#40ddff',
13-
'primary-3': '#7c7fff',
14-
primary: '#7c7fff',
15-
accent: '#170f1e',
16-
'hero-button-hover': '#b53a25'
11+
2023: {
12+
'bavarian-red': {
13+
1: '#f8bd89',
14+
2: '#ec4237',
15+
3: '#a3180f',
16+
4: '#460a07'
17+
},
18+
'bavarian-blue': {
19+
1: '#b2e3f0',
20+
2: '#33b6d8',
21+
3: '#14596b',
22+
4: '#0c3640'
23+
},
24+
'bavarian-gold': {
25+
1: '#fffba4',
26+
2: '#d2b863',
27+
3: '#ad832d',
28+
4: '#382e10'
29+
},
30+
manga: {
31+
2: '#efedef',
32+
3: '#c3bcc3',
33+
4: '#655f67'
34+
},
35+
void: {
36+
2: '#0f0913'
37+
}
38+
}
1739
}
1840
}
1941
},
@@ -22,6 +44,6 @@ module.exports = {
2244
},
2345
plugins: [require('daisyui')],
2446
daisyui: {
25-
themes: ['dark']
47+
base: false
2648
}
2749
};

0 commit comments

Comments
 (0)