Skip to content

Instantly share code, notes, and snippets.

@juniormartinxo
Last active April 23, 2023 11:56
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 juniormartinxo/21b54461b3cf9708cb4eb8544588e6c7 to your computer and use it in GitHub Desktop.
Save juniormartinxo/21b54461b3cf9708cb4eb8544588e6c7 to your computer and use it in GitHub Desktop.
Dark Reader CSS Theme

Dark Reader CSS Theme

image

*{
  color: #a3a3a3 !important;
  font-family: 'Victor Mono' !important;
}

body {
  background-color: #222E3B !important;
  color: #a3a3a3 !important;
}

h1, h2, h3, h4, h5, h6{
  color: #669900 !important;
}

code.inline-code, inlinecode, a.active-item, .tag{
  background-color: #669900 !important;
  color: #ffffff !important;
  font-weight: thin !important;
  font-style: italic;
}

a.non-active:hover{
  color: #669900 !important;  
}

a[class*=button__ButtonWrapper-]{
background-color: #669900 !important;
  color: #ffffff !important;
  font-weight: thin !important;
  font-style: italic;

}

.active-item span{
  background-color: #2e323f !important;
  color: #669900 !important;
}

code{
  background-color: #EDF2F7 !important;
  color: #a3a3a3 !important;
}

code[class*=language-], pre[class*=language-], pre[class*=language-] code{
  border-radius:0 !important;
  border:0 !important;
}

div[class*=BannerWrapper-] div{
  background: transparent !important;
  background-color: #2e323f !important;
  display: none !important;
}

div[class*=header__SecondLevelHeader]{
  background-color:#26282d !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment