Skip to content

Commit f9976b6

Browse files
committed
change tpe colors to brand colors
1 parent 6e0e811 commit f9976b6

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

app/components/model.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,17 @@ export interface Edge {
2727
}
2828

2929
const COLORS_ORDER_NAME = [
30-
"pink",
31-
"yellow",
3230
"blue",
31+
"pink",
32+
"orange",
33+
"turquoise",
3334
]
3435

3536
const COLORS_ORDER = [
36-
"#F43F5F",
37-
"#E9B306",
38-
"#15B8A6",
37+
"#7466FF",
38+
"#FF66B3",
39+
"#FF804D",
40+
"#80E6E6",
3941
]
4042

4143
export function getCategoryColorValue(index: number): string {

tailwind.config.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ module.exports = {
2323
},
2424
extend: {
2525
colors: {
26-
pink: "#F43F5F",
27-
yellow: "#E9B306",
28-
blue: "#15B8A6",
26+
blue: "#7466FF",
27+
pink: "#FF66B3",
28+
orange: "#FF804D",
29+
turquoise: "#80E6E6",
2930
border: "hsl(var(--border))",
3031
input: "hsl(var(--input))",
3132
ring: "hsl(var(--ring))",

0 commit comments

Comments
 (0)