56 lines
1.2 KiB
CSS
56 lines
1.2 KiB
CSS
/* Catppuccin Latte — official palette
|
|
https://github.com/catppuccin/catppuccin (light) */
|
|
html[data-flavor="latte"] {
|
|
color-scheme: light;
|
|
|
|
/* accents */
|
|
--rosewater: #dc8a78;
|
|
--flamingo: #dd7878;
|
|
--pink: #ea76cb;
|
|
--accent-rgb: 234, 118, 203; /* live accent default = theme pink */
|
|
--mauve: #8839ef;
|
|
--red: #d20f39;
|
|
--maroon: #e64553;
|
|
--peach: #fe640b;
|
|
--yellow: #df8e1d;
|
|
--green: #40a02b;
|
|
--teal: #179299;
|
|
--sky: #04a5e5;
|
|
--saphire: #209fb5;
|
|
--blue: #1e66f5;
|
|
--lavender: #7287fd;
|
|
|
|
/* text */
|
|
--text: #4c4f69;
|
|
--subtext-1: #5c5f77;
|
|
--subtext-0: #6c6f85;
|
|
--overlay-2: #7c7f93;
|
|
--overlay-1: #8c8fa1;
|
|
--overlay-0: #9ca0b0;
|
|
|
|
/* surfaces + backgrounds */
|
|
--surface-2: #acb0be;
|
|
--surface-1: #bcc0cc;
|
|
--surface-0: #ccd0da;
|
|
--base: #eff1f5;
|
|
--mantle: #e6e9ef;
|
|
--crust: #dce0e8;
|
|
}
|
|
|
|
/* Light-mode readability fixes (icons are white-filtered by default) */
|
|
html[data-flavor="latte"] .icon {
|
|
filter: brightness(0);
|
|
}
|
|
|
|
html[data-flavor="latte"] .link-card:hover .icon {
|
|
filter: none;
|
|
}
|
|
|
|
html[data-flavor="latte"] .badge-icon {
|
|
filter: none;
|
|
}
|
|
|
|
html[data-flavor="latte"] body::before {
|
|
filter: invert(14%) sepia(0.2) saturate(300%) hue-rotate(200deg) brightness(1.3);
|
|
opacity: 0.05;
|
|
} |