Dark Mode for Bun official guides
Bun Guides Dark Mode by Kaedriz
Details
AuthorKaedriz
LicenseMIT
Categorybun
Created
Updated
Size1.0 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Bun Guides Dark Mode
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Dark Mode for Bun official guides
@author Kaedriz
==/UserStyle== */
@-moz-document url-prefix("https://bun.sh/guides/") {
/* Main background color */
body > section {
background-color: rgb(20 21 26 / var(--tw-bg-opacity));
}
/* Main font color */
body > section > main {
color: #676e94 !important;
}
/* Font color of header */
body > section > main > h1 {
color: #6873ad !important;
}
/* Font color for links */
a {
color: #6071cb !important;
}
/* Inline Code color */
p > code {
color: #b8b7c5 !important;
background-color: #282A36 !important;
border: 1px solid #282A36 !important;
}
body > section > div > div > div > p:first-of-type {
color: #b8b7c5 !important;
background-color: #282A36 !important;
}
}