Skip to content

highlight colors in dark theme #47

@sugry

Description

@sugry

In the dark ursine-umbra-cyrillic.css you have a problem with highlighting text in code mode. Highlight and text are white and unreadable. A similar problem is with the footer button.
To fix this, I suggest this.

add to section :root {

:root {
    --select-text-bg-color: #0662D3;
    ...

in code from line 909 and below

.dropdown-menu .active a,
.dropdown-menu .has-extra-menu.active a,
.dropdown-menu .has-btn-submenu .menu-style-btn.active, #footer-word-count-info .ty-footer-word-count-all tr:hover,
#ty-spell-check-dict-missing-menu li:hover, .ty-spell-check-panel-item.ty-active, .ty-spell-check-panel-item:hover, .footer-item:hover {
  background: #2b2b2b !important;
  color: #ddd !important;
}

swap values of variables background and color as shown here

and add below block e.g.:

.footer-item {
  background: #1E2022 !important;
  color: #DEDEDE !important;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions