Created
August 12, 2020 03:13
-
-
Save dqgorelick/c68b7df10c5743e68eebffdc891fbfac to your computer and use it in GitHub Desktop.
atom stylesheet for tidalcycles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
background: rgba(0, 0, 0, 1) !important; | |
} | |
atom-pane, atom-panel, atom-notification { | |
// background: rgba(0, 0, 0, 0) !important; | |
} | |
atom-overlay { | |
display: none; | |
background: rgba(0, 0, 0, 0) !important; | |
} | |
atom-text-editor::shadow { | |
.cursor-line { | |
background-color: rgba(256, 0, 256, 0.3) !important; | |
} | |
.selection .region { | |
background-color: rgba(256, 0, 256, 0.3) !important; | |
} | |
.gutter { | |
background-color: rgba(0, 0, 0, 0) !important; | |
} | |
} | |
::-webkit-scrollbar { | |
display: none; | |
} | |
body, html, atom-text-editor { | |
background-color: #000; | |
color: #fff; | |
font-weight: bold; | |
// text-shadow: 1px 1px 1px black; | |
box-shadow: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment