Fix: フルダークで文字が薄く表示される問題

This commit is contained in:
KMY 2025-04-14 10:52:33 +09:00
parent 1a77619150
commit c68762e2bf

View file

@ -1,11 +1,14 @@
$classic-base-color: #282c37; // Midnight Express
$classic-secondary-color: #d9e1e8; // Pattens Blue
// Variables for defaults in UI
$simple-background-color: $classic-base-color !default;
@use '../mastodon/variables' with (
// Variables for defaults in UI
$simple-background-color: $classic-base-color,
// Tell UI to use selected colors
$ui-base-lighter-color: #969fbc !default; // Lighter darkest
// Tell UI to use selected colors
$ui-base-lighter-color: #969fbc,
// For texts on inverted backgrounds
$inverted-text-color: $classic-secondary-color !default;
// Lighter darkest
// For texts on inverted backgrounds
$inverted-text-color: $classic-secondary-color
);