feat. gnb 아이콘 추가

This commit is contained in:
clkim
2025-10-13 16:04:57 +09:00
parent 7d5057fc43
commit 277532f0ba
16 changed files with 183 additions and 64 deletions

View File

@@ -11,4 +11,11 @@
a {
outline: none;
}
/* 라이트 테마 색상 */
[data-theme='light'] {
body {
background-color: #fff;
}
}
}

View File

@@ -1,19 +1,4 @@
/* CSS 변수 정의 - @layer 밖에 위치 */
:root {
--foreground: #ffffff;
--foreground-10: #ffffff;
--foreground-reversal: #1f1f1f;
--foreground-reversal-4: rgba(0, 0, 0, 0.04);
--foreground-reversal-6: rgba(0, 0, 0, 0.06);
--foreground-reversal-8: rgba(0, 0, 0, 0.08);
--foreground-reversal-10: rgba(0, 0, 0, 0.1);
--foreground-reversal-15: rgba(0, 0, 0, 0.15);
--foreground-reversal-30: #ebebeb; /* gray-80 */
}
/* 다크 테마 색상 */
[data-theme='dark'] {
--foreground: #191919;
--foreground-10: #292929;
@@ -23,7 +8,26 @@
--foreground-reversal-8: rgba(255, 255, 255, 0.08);
--foreground-reversal-10: rgba(255, 255, 255, 0.1);
--foreground-reversal-15: rgba(255, 255, 255, 0.15);
--foreground-reversal-30: #404040; /* gray-750 */
--foreground-gray-750: #404040;
--foreground-gray-500: #7f7f7f;
}
/* 라이트 테마 색상 */
[data-theme='light'] {
--foreground: #ffffff;
--foreground-10: #ffffff;
--foreground-reversal: #1f1f1f;
--foreground-reversal-4: rgba(0, 0, 0, 0.04);
--foreground-reversal-6: rgba(0, 0, 0, 0.06);
--foreground-reversal-8: rgba(0, 0, 0, 0.08);
--foreground-reversal-10: rgba(0, 0, 0, 0.1);
--foreground-reversal-15: rgba(0, 0, 0, 0.15);
--foreground-reversal-50: rgba(0, 0, 0, 0.5); /* #7F7F7F */
--foreground-gray-750: #ebebeb; /* gray-80 */
--foreground-gray-500: #999999; /* gray-400 */
}
/* 커스텀 컴포넌트 스타일 */