Skip to content

Commit caf292a

Browse files
committed
chore/#37: 색상 시스템을 위한 colors.ts 파일 추가
1 parent cf162cb commit caf292a

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

TinyBite/styles/colors.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
export const colors = {
2+
main: "#FE870F",
3+
sub: "#FFEFD8",
4+
background: "#FCFBFF",
5+
black: "#222222",
6+
white: "#FFFFFF",
7+
8+
gray: {
9+
1: "#888888",
10+
2: "#AAAAAA",
11+
3: "#D9D9D9",
12+
4: "#F1F1F1",
13+
},
14+
15+
green: {
16+
1: "#5FCC00",
17+
2: "#DDFFD8",
18+
},
19+
20+
red: {
21+
1: "#E93838",
22+
2: "#FFD8D8",
23+
},
24+
};

0 commit comments

Comments
 (0)