Skip to content

Commit

Permalink
style: 흰색으로 바꾸고 그림자 효과를주어 흰색이 표시되게 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hyonun321 committed Dec 3, 2024
1 parent 7472c19 commit 4a0ea60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,12 @@ const colorVariants: ColorVariants = {
yellow: { backgroundColor: "#EEAF66" },
purple: { backgroundColor: "#9862CD" },
brown: { backgroundColor: "#985728" },
white: { backgroundColor: "#EEEEEE" },
white: { backgroundColor: "#FFFFFF" },
};

export const backgroundColorIndicator = cva({
base: {
border: "0.5px solid gray",
borderRadius: "3px",
width: "100%",
height: "100%",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const colorVariants: ColorVariants = {
yellow: { color: "#EEAF66" },
purple: { color: "#9862CD" },
brown: { color: "#985728" },
white: { color: "#EEEEEE" },
white: { color: "#FFFFFF" },
};

export const textColorIndicator = cva({
Expand All @@ -56,6 +56,7 @@ export const textColorIndicator = cva({
alignItems: "center",
width: "100%",
height: "100%",
textShadow: "0.5px 0 black",
fontSize: "16px",
fontWeight: "bold",
},
Expand Down

0 comments on commit 4a0ea60

Please sign in to comment.