Skip to content

Instantly share code, notes, and snippets.

@deanc
Created April 15, 2019 11:13
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 deanc/3ef02d205a28d31e1ea8c010dcaf8ed0 to your computer and use it in GitHub Desktop.
Save deanc/3ef02d205a28d31e1ea8c010dcaf8ed0 to your computer and use it in GitHub Desktop.
Better looking scrollbars on Atom Dark theme

Add this to your ~/.atom/styles.less file:

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,.2);
}

::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: rgba(255,255,255,.15);
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255,255,255,.3)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment