mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-12 17:59:43 +00:00
65 lines
1.2 KiB
CSS
65 lines
1.2 KiB
CSS
:root {
|
|
/* Default theme values will be overridden by theme store */
|
|
--base: #1e1e2e;
|
|
--mantle: #181825;
|
|
--crust: #11111b;
|
|
--text: #cdd6f4;
|
|
--subtext0: #a6adc8;
|
|
--subtext1: #bac2de;
|
|
--surface0: #313244;
|
|
--surface1: #45475a;
|
|
--surface2: #585b70;
|
|
--overlay0: #6c7086;
|
|
--overlay1: #7f849c;
|
|
--blue: #89b4fa;
|
|
--lavender: #b4befe;
|
|
--sapphire: #74c7ec;
|
|
--sky: #89dceb;
|
|
--red: #f38ba8;
|
|
--maroon: #eba0ac;
|
|
--peach: #fab387;
|
|
--yellow: #f9e2af;
|
|
--green: #a6e3a1;
|
|
--teal: #94e2d5;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
|
|
background-color: var(--base);
|
|
color: var(--text);
|
|
-webkit-font-smoothing: antialiased;
|
|
overflow: hidden;
|
|
user-select: none;
|
|
}
|
|
|
|
/* Global scrollbar styles */
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: var(--surface2) var(--mantle);
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: var(--mantle);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--surface2);
|
|
border-radius: 4px;
|
|
transition: background 0.2s ease;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--surface1);
|
|
}
|
|
|
|
::-webkit-scrollbar-corner {
|
|
background: var(--mantle);
|
|
} |