Skip to content

Commit

Permalink
fix(stylus): unthemed elements (#1215)
Browse files Browse the repository at this point in the history
* fix(stylus): unthemed elements

* fix(stylus): increase version number

* fix(stylus): invalid input colors
  • Loading branch information
thismoon authored Aug 19, 2024
1 parent 8cf75e9 commit 39d2713
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion styles/stylus/catppuccin.user.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@name Stylus Catppuccin
@namespace github.com/catppuccin/userstyles/styles/stylus
@homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/stylus
@version 1.2.2
@version 1.2.3
@updateURL https://github.com/catppuccin/userstyles/raw/main/styles/stylus/catppuccin.user.css
@supportURL https://github.com/catppuccin/userstyles/issues?q=is%3Aopen+is%3Aissue+label%3Astylus
@description Soothing pastel theme for Stylus
Expand Down Expand Up @@ -92,6 +92,10 @@
--color-on: fade(@accent-color, 25%);
--color-off: @surface2;
}
:focus {
--focus-color1: @accent-color !important;
--focus-color2: fade(@accent-color, 25%) !important;
}
}

.active #filters-stats,
Expand Down Expand Up @@ -243,6 +247,39 @@
.CodeMirror-activeline-background {
background: @mantle;
}
#live-reload-install-hint {
color: @teal;
}
#menu.delete header {
background: fade(@red, 25%);
}
#menu.delete > div,
#menu.delete [data-cmd="delete"] {
border-color: @red;
}
.entry.odd {
background-color: fade(@surface0, 25%);
}
.updater-icons > :not(.check-update)::after {
border-color: @yellow;
background: @base;
}
.split-btn-menu {
border-color: @accent-color;
}
.split-btn-menu > :hover {
background: fade(@accent-color, 25%);
}
#help-popup .title {
background: @mantle;
}
#toc li:hover {
background: fade(@accent-color, 20%);
}
input:invalid {
background: fade(@red, 10%);
color: @red;
}
}
}

Expand Down

0 comments on commit 39d2713

Please sign in to comment.