WorldMap Darkmode

This commit is contained in:
Chaebean Yang 2025-06-01 18:48:21 +09:00
parent e4f4f9d23b
commit 5f75a328b0
2 changed files with 19 additions and 2 deletions

View File

@ -111,4 +111,21 @@
r: 8;
cursor: pointer;
}
:global(.dark .map-wrapper) {
background-color: var(--black);
}
:global(.dark .country) {
fill: #121212;
stroke: var(--gray-700);
}
:global(.dark .country:hover) {
fill: #5a1c05;
}
:global(.dark .marker) {
fill: var(--memory-500);
}
</style>

View File

@ -1,6 +1,6 @@
export const Colors = {
white: '#FFFFFF',
black: '#000000',
black: '#121212',
gray: {
light50: '#F0F0F0',
light100: '#E6E6E6',
@ -11,7 +11,7 @@ export const Colors = {
med600: '#727272',
dark700: '#5E5E5E',
dark800: '#4B4B4B',
dark900: '#393939'
dark900: '#262626'
},
planner: {
light50: '#A5FFFF',