design: semantic color 추가

This commit is contained in:
jhynsoo 2024-07-16 13:53:34 +09:00
parent 96f764880d
commit 8451084cf0
3 changed files with 13 additions and 0 deletions

View File

@ -18,6 +18,7 @@
font-size: 14px;
line-height: 1.4;
font-weight: 400;
box-sizing: border-box;
}
.title {

View File

@ -23,6 +23,7 @@
line-height: 1.4;
font-weight: 700;
color: var(--text-color);
box-sizing: border-box;
}
.group {

View File

@ -124,6 +124,17 @@
--warning-color: var(--yellow500);
--info-color: var(--blue500);
--on-primary: var(--whiteOpacity800);
--on-error: var(--whiteOpacity800);
--on-success: var(--whiteOpacity800);
--on-warning: var(--whiteOpacity800);
--on-info: var(--whiteOpacity800);
--error-border: var(--red700);
--success-border: var(--green700);
--warning-border: var(--yellow700);
--info-border: var(--blue700);
/* shadow */
--shadow: 2px 4px 12px var(--greyOpacity200);
--shadow-hard: 2px 4px 16px var(--greyOpacity300);