fix: made the explore theme use the text color instead of blank
closes #1
This commit is contained in:
parent
62060cb5eb
commit
d940cfa5ab
|
@ -121,6 +121,48 @@ body {
|
|||
background-color: var(--theme-catppuccin-surface0);
|
||||
}
|
||||
|
||||
element {
|
||||
|
||||
}
|
||||
p:first-child {
|
||||
|
||||
margin-top: 0;
|
||||
|
||||
}
|
||||
:root * {
|
||||
|
||||
--fonts-regular: var(--fonts-override, var(--fonts-proportional)), "Noto Sans", "Liberation Sans", sans-serif, var(--fonts-emoji);
|
||||
|
||||
}
|
||||
p {
|
||||
|
||||
margin: 0 0 1em;
|
||||
margin-top: 0px;
|
||||
line-height: 1.4285em;
|
||||
|
||||
}
|
||||
* {
|
||||
|
||||
caret-color: var(--theme-catppuccin-text);
|
||||
|
||||
}
|
||||
* {
|
||||
|
||||
scrollbar-color: var(--color-primary) transparent;
|
||||
caret-color: var(--color-caret);
|
||||
|
||||
}
|
||||
|
||||
*, ::before, ::after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
.ui.list > .item .description,
|
||||
.ui.list .list > .item .description,
|
||||
.ui.list > .item {
|
||||
color: var(--theme-catppuccin-text);
|
||||
}
|
||||
|
||||
.repository-summary {
|
||||
background-color: var(--theme-catppuccin-surface0);
|
||||
}
|
||||
|
@ -169,6 +211,10 @@ body {
|
|||
color: var(--theme-catppuccin-surface0);
|
||||
}
|
||||
|
||||
#navbar .item.active {
|
||||
color: var(--theme-catppuccin-text);
|
||||
}
|
||||
|
||||
* {
|
||||
caret-color: var(--theme-catppuccin-text);
|
||||
}
|
||||
|
|
Reference in a new issue