Skip to content

Instantly share code, notes, and snippets.

@isaacruiz0
Created July 26, 2022 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaacruiz0/3a161b74473c9c8ab6ca56fad6254149 to your computer and use it in GitHub Desktop.
Save isaacruiz0/3a161b74473c9c8ab6ca56fad6254149 to your computer and use it in GitHub Desktop.
Dark Mode theme for BlankSlate.io
/* ADD THIS TO YOUR STYLEBOT CHROME EXTENSION */
/* General */
* {
background-color: #000;
color: #DDD;
}
.message {
color:#464646;
}
.login-button{
color:#464646;
border-color: #464646;
}
span {
color:#464646;
border-color: #464646;
}
.bottom-buttons-container {
color:#464646;
border-color: #464646;
}
a {
color:#464646;
border-color: #464646;
}
/* Scroll Bar */
/* width */
::-webkit-scrollbar {
width: 7.5px;
}
/* Track */
::-webkit-scrollbar-track {
background: transparent;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #464646;
border-radius: 10px;
}
/* Text Highlight */
::selection {
background-color: #464646;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment