Skip to content

Commit 9af616c

Browse files
authored
Merge pull request #13 from kleros/refactor(frontend)/add-all-colors
Refactor(frontend): add all colors
2 parents ab1333f + b032f01 commit 9af616c

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

frontend/src/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ interface IFooter {
1111
const Footer: React.FC<IFooter> = ({ socials }) => {
1212
return (
1313
<div className={
14-
"py-4 bg-gradient-to-b from-light-blue to-30% to-kleros-purple"
14+
"py-4 bg-gradient-to-b from-secondary-blue to-30% to-primary-purple"
1515
}>
1616
<hr className="h-0.5 border-t-0 bg-secondary-purple mb-4 mx-2"/>
1717
<div className="flex gap-4 justify-center align-middle">

frontend/tailwind.config.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,16 @@ const config: Config = {
1111
colors: {
1212
background: "var(--background)",
1313
foreground: "var(--foreground)",
14-
"background-2": "#220050",
15-
"stroke": "#42498F",
14+
"primary-text": "#DAF0FF",
1615
"secondary-text": "#BECCE5",
17-
"kleros-purple": "#9747FF",
18-
"light-blue": "#7CE2FF",
16+
"stroke": "#42498F",
17+
"primary-purple": "#9747FF",
1918
"secondary-purple": "#BA75FE",
19+
"dark-purple": "#230079",
20+
"primary-blue": "#27CDFE",
21+
"secondary-blue": "#7CE2FF",
22+
"background-1": "#1B003F",
23+
"background-2": "#220050",
2024
},
2125
},
2226
},

0 commit comments

Comments
 (0)