mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
f3bdee272b
This allows rendering the elements with a dark color in dark mode. We must also assign a `fill` color to the <select> element's chevron SVG to match the text color.
37 lines
922 B
CSS
37 lines
922 B
CSS
/*
|
|
* Stylesheet designed to be used as the user stylesheet by apps that want their
|
|
* web content to look like the native GUI.
|
|
*/
|
|
|
|
html {
|
|
background-color: -libweb-palette-base;
|
|
color: -libweb-palette-base-text;
|
|
}
|
|
|
|
input, textarea {
|
|
background-color: -libweb-palette-base;
|
|
border-color: -libweb-palette-threed-shadow1;
|
|
color: -libweb-palette-base-text;
|
|
}
|
|
|
|
button, input[type=submit], input[type=button], input[type=reset], select {
|
|
background-color: -libweb-palette-button;
|
|
border-color: -libweb-palette-threed-shadow1;
|
|
color: -libweb-palette-button-text;
|
|
}
|
|
|
|
button:hover, input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover, select:hover {
|
|
background-color: -libweb-palette-hover-highlight;
|
|
}
|
|
|
|
:link {
|
|
color: -libweb-link;
|
|
}
|
|
|
|
:visited {
|
|
color: -libweb-palette-visited-link;
|
|
}
|
|
|
|
:link:active, :visited:active {
|
|
color: -libweb-palette-active-link;
|
|
}
|