Forums

dark skin/theme for ide and everthing :)

I share my dark skin css code for pythonanywhere.com. You can use it with any css injector browser add-on. I changed all the colors in the ide ;)

body {
background-color: #111 !important;
color: #fff !important;
}
#id_logo {
border: solid 1px #fff !important;
background: #fff !important;
border-radius: 4px !important;
padding: 1px !important;
}
#id_console_name {
    color: #fff !important;
}
x-row {
color: #0ff !important;
}


.primary-navbar .active a {
color: white !important;
font-weight: bold !important;
background-color: #333 !important;
border-radius: 4px !important;
}
.well {
background-color: #222 !important;
border-radius: 4px !important;
}

.fullscreen-main-navbar {
background-color: #111 !important;
}
.ace-tm {
    background-color: #222 !important;
    color: #eee !important;
}
.ace-tm .ace_gutter {
background: #222 !important;
color: #fff !important;
}
.splitter-bar {
    display: none !important;
}
.ace_print-margin {
    display: none !important;
}
.ui-widget-content {
border: 0 !important;
background: #111 !important;
color: #eee !important;
}
#id_ide_console {
    display: none !important;
}



.ace-tm .ace_string {
    color: rgb(0, 255, 0) !important;
}
.ace-tm .ace_keyword.ace_operator {
color: rgb(255, 255, 0) !important;
}
.ace_keyword { 
    color: #0ff !important;
}
.ace-tm .ace_constant.ace_numeric {
color: rgb(255, 120, 0) !important;
}
.ace-tm .ace_meta.ace_tag {
color: #0ff !important;
}

.ace-tm .ace_constant {
color: rgb(255, 0, 0) !important;
}
.ace-tm .ace_support.ace_type, .ace-tm .ace_support.ace_class {
color: rgb(0, 255, 255) !important;
}


.ace-tm .ace_cursor {
color: white !important;
}
.ace-tm .ace_marker-layer .ace_selection {
background: rgb(59, 67, 78) !important;
}


.col-md-8.col-md-offset-2 {
color: #000 !important;
}

thanks for sharing!