1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-09-19 23:31:41 +02:00
theme.park/CSS/themes/filebrowser/filebrowser-base.css

684 lines
14 KiB
CSS
Raw Normal View History

2019-07-28 12:15:52 +02:00
/* dP dP dP */
/* 88 88 88 */
/* d8888P 88d888b. .d8888b. 88d8b.d8b. .d8888b. 88d888b. .d8888b. 88d888b. 88 .dP */
/* 88 88' `88 88ooood8 88'`88'`88 88ooood8 88' `88 88' `88 88' `88 88888" */
/* 88 88 88 88. ... 88 88 88 88. ... 88. .88 88. .88 88 88 `8b. */
/* dP dP dP `88888P' dP dP dP `88888P' 88 88Y888P' `88888P8 dP dP `YP */
/* 88 */
/* dP */
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
2021-07-20 01:05:45 +02:00
/* PLACEHOLDERS */
input::-webkit-input-placeholder {
color: var(--text);
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
input:focus::-webkit-input-placeholder {
color: var(--text-hover);
}
/* Firefox < 19 */
input:-moz-placeholder {
color: var(--text);
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
input:focus:-moz-placeholder {
color: var(--text-hover);
}
/* Firefox > 19 */
input::-moz-placeholder {
color: var(--text);
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
input:focus::-moz-placeholder {
color: var(--text-hover);
}
/* Internet Explorer 10 */
input:-ms-input-placeholder {
color: var(--text);
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
input:focus:-ms-input-placeholder {
color: var(--text-hover);
}
2019-07-28 12:15:52 +02:00
.message {
color: #FFF;
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
#login {
min-height: 100%;
height: auto;
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
body {
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
color: var(--text);
2021-07-20 01:06:51 +02:00
font-family: Open Sans Bold, Helvetica Neue, Helvetica, Arial, sans-serif;
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
h1,
h2,
h3,
h4,
h5,
h6,
th {
2021-07-20 01:05:45 +02:00
color: var(--text-hover) !important;
}
2021-07-20 01:06:51 +02:00
#login input[type=password],
#login input[type=text] {
2021-07-20 01:05:45 +02:00
color: var(--text-hover) !important;
2021-07-20 01:06:51 +02:00
background-color: rgba(0, 0, 0, 0.15) !important;
2019-07-28 12:15:52 +02:00
border: none;
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
#loading {
2021-07-20 01:06:51 +02:00
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2019-07-28 12:15:52 +02:00
}
#loading .spinner * {
2021-07-20 01:06:51 +02:00
background-color: #FFF !important;
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:05:45 +02:00
2019-07-28 12:15:52 +02:00
html {
min-height: 100%;
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
body {
2019-07-28 12:15:52 +02:00
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
@media (max-width: 736px) {
nav,
nav.active {
2021-07-20 01:05:45 +02:00
background: var(--modal-bg-color) !important;
}
2021-07-20 01:06:51 +02:00
#dropdown.active {
2021-07-20 01:05:45 +02:00
background: var(--drop-down-menu-bg) !important;
}
2021-07-20 01:06:51 +02:00
}
2019-07-28 12:15:52 +02:00
nav {
2021-07-20 01:06:51 +02:00
background: rgba(0, 0, 0, .45);
2019-07-28 12:15:52 +02:00
height: 100%;
2021-07-20 01:05:45 +02:00
top: 64px;
2019-07-28 12:15:52 +02:00
width: 240px;
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
.overlay:not(nav) {
background-color: transparent;
}
2021-07-20 01:06:51 +02:00
nav .action {
color: var(--text);
2019-07-28 12:15:52 +02:00
font-size: 13px;
2021-07-20 01:06:51 +02:00
font-family: Open Sans Semibold, Helvetica Neue, Helvetica, Arial, sans-serif;
2019-07-28 12:15:52 +02:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding-top: 0px;
padding-bottom: 0px;
}
2021-07-20 01:06:51 +02:00
nav .action:hover {
background-color: rgba(255, 255, 255, 0.05);
2021-07-20 01:05:45 +02:00
color: rgb(var(--accent-color));
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:05:45 +02:00
2021-07-20 01:06:51 +02:00
nav>div {
2019-07-28 12:15:52 +02:00
border-top: none;
}
2021-07-20 01:06:51 +02:00
header {
2021-07-20 01:05:45 +02:00
background: rgba(0, 0, 0, 0.25);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-07-20 01:06:51 +02:00
border-bottom: transparent;
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .15);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
header>div:first-child {
2019-07-28 12:15:52 +02:00
height: 60px;
}
2021-07-20 01:06:51 +02:00
body {
2019-07-28 12:15:52 +02:00
padding-top: 60px;
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
.shell {
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-07-20 01:06:51 +02:00
color: rgb(var(--accent-color));
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
.shell__prompt i {
2021-07-20 01:05:45 +02:00
color: rgb(var(--accent-color));
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
.action {
2019-07-28 12:15:52 +02:00
color: #FFF;
}
2021-07-20 01:06:51 +02:00
#listing.list .item {
background-color: rgba(0, 0, 0, .15);
color: var(--text);
2019-07-28 12:15:52 +02:00
border: none;
}
2021-07-20 01:06:51 +02:00
#listing.list .item:hover {
background-color: rgba(255, 255, 255, 0.08);
color: var(--text-hover);
2019-07-28 12:15:52 +02:00
border: none;
transition: .4s;
}
2021-07-20 01:06:51 +02:00
#listing.list .item.header {
background-color: rgba(0, 0, 0, .45);
2021-07-20 01:05:45 +02:00
color: var(--text-hover);
2019-07-28 12:15:52 +02:00
border-bottom: none;
right: auto;
}
2021-07-20 01:06:51 +02:00
.material-icons,
.prompt .file-list ul li:before {
2021-07-20 01:05:45 +02:00
color: rgb(var(--accent-color));
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
.action:hover {
2021-07-20 01:06:51 +02:00
background-color: rgba(var(--accent-color), .1);
2021-07-20 01:05:45 +02:00
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
.action .counter {
background: rgb(var(--accent-color));
color: var(--label-text-color);
border: 2px solid var(--label-text-color);
}
.share__box {
background: transparent;
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
.share__box__info {
background: rgba(0, 0, 0, 0.25);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
.share__box__download {
2021-07-20 01:05:45 +02:00
background: rgb(var(--accent-color));
color: var(--text-hover);
border-bottom: 1px solid rgb(var(--accent-color));
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
.share__box__element {
border-top: 1px solid rgb(255 255 255 / 10%);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
svg {
2021-07-20 01:05:45 +02:00
fill: rgb(var(--accent-color)) !important;
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
#listing.list .item div:first-of-type i {
2021-07-20 01:05:45 +02:00
color: rgb(var(--accent-color));
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
#listing .item i {
2021-07-20 01:05:45 +02:00
color: rgb(var(--accent-color));
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
#listing.mosaic:hover .item:hover i:hover {
color: var(--accent-color-hover);
}
2021-07-20 01:06:51 +02:00
#listing .item[aria-selected=true] {
2019-07-28 12:15:52 +02:00
background-color: rgba(255, 255, 255, 0.2) !important;
2021-07-20 01:05:45 +02:00
color: var(--text-hover) !important;
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
#listing h2 {
2021-07-20 01:05:45 +02:00
color: var(--text-hover);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
#listing #multiple-selection {
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
#breadcrumbs span a {
color: var(--text-hover);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
#breadcrumbs {
2021-07-20 01:05:45 +02:00
border-bottom: 1px solid rgb(var(--accent-color));
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
#listing .item {
background-color: rgba(0, 0, 0, .15);
color: var(--text);
2019-07-28 12:15:52 +02:00
border: none;
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
.input {
2021-07-20 01:05:45 +02:00
background: rgba(0, 0, 0, 0.25);
color: var(--text-hover);
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
select>option {
background: #1f1f1f;
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
#search #input {
background: #fff;
display: flex;
padding: 10px;
}
2021-07-20 01:06:51 +02:00
#search #result {
2019-07-28 12:15:52 +02:00
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2021-07-20 01:05:45 +02:00
color: var(--text-hover);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
#search .boxes {
background-color: rgba(0, 0, 0, .15);
2019-07-28 12:15:52 +02:00
padding: 15px;
}
2021-07-20 01:06:51 +02:00
#search .boxes h3 {
2021-07-20 01:05:45 +02:00
color: var(--text-hover);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
#search .boxes>div>div {
background-color: rgba(0, 0, 0, .10);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
#search .boxes>div>div:hover {
background-color: rgba(255, 255, 255, .08);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
#search.active #input {
2019-07-28 12:15:52 +02:00
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2019-07-28 12:15:52 +02:00
height: 60px;
color: black;
}
2021-07-20 01:06:51 +02:00
#search.active i,
#search.active input {
2021-07-20 01:05:45 +02:00
color: var(--text-hover);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
#search #result>div>:first-child {
2019-07-28 12:15:52 +02:00
margin-top: 10px;
}
2021-07-20 01:06:51 +02:00
.card {
background-color: rgba(0, 0, 0, .15);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
.card h3 {
2021-07-20 01:05:45 +02:00
color: var(--text-hover);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
.card#share ul li a {
2021-07-20 01:05:45 +02:00
color: rgb(var(--accent-color));
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
select {
2021-07-20 01:05:45 +02:00
color: var(--text-hover);
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
.card#share .input-group * {
border: none;
background: transparent;
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:05:45 +02:00
2021-07-20 01:06:51 +02:00
input,
textarea,
select,
button {
2021-07-20 01:05:45 +02:00
color: var(--text-hover);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
.collapsible>label * {
2021-07-20 01:05:45 +02:00
color: var(--text-hover);
}
a,
.link,
.breadcrumbs span a,
2021-07-20 01:06:51 +02:00
.breadcrumbs,
.breadcrumbs span {
2021-07-20 01:05:45 +02:00
color: var(--link-color);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
a:hover,
.link:hover,
.breadcrumbs span a:hover {
2021-07-20 01:06:51 +02:00
color: var(--link-color-hover);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
table th {
2021-07-20 01:05:45 +02:00
color: var(--text-hover);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
.card.floating {
2019-07-28 12:15:52 +02:00
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
#search #input {
2021-07-20 01:06:51 +02:00
background-color: rgba(255, 255, 255, 0.08);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
#listing.mosaic .item {
2019-07-28 12:15:52 +02:00
box-shadow: none !important;
}
2021-07-20 01:06:51 +02:00
#listing.mosaic .item:hover {
2019-07-28 12:15:52 +02:00
box-shadow: none !important;
2021-07-20 01:06:51 +02:00
background-color: rgba(255, 255, 255, 0.08);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
.dashboard p label {
2021-07-20 01:05:45 +02:00
color: var(--text-hover);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2019-07-28 12:15:52 +02:00
.dashboard #nav li.active {
2021-07-20 01:05:45 +02:00
border-color: rgb(var(--accent-color));
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
.dashboard #nav ul li.active {
border-color: rgb(var(--accent-color));
color: rgb(var(--accent-color));
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
.dashboard #nav ul li.active:before {
background: rgb(var(--accent-color));
opacity: .08;
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
.dashboard #nav ul li:hover {
2021-07-20 01:06:51 +02:00
background: rgb(var(--accent-color), .15);
2021-07-20 01:05:45 +02:00
color: rgb(var(--accent-color));
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
.dashboard #nav .wrapper {
border-bottom: 2px solid var(--accent-color-hover);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:05:45 +02:00
2021-07-20 01:06:51 +02:00
@media (min-width: 1024px) {
main {
2019-07-28 12:15:52 +02:00
margin-left: 270px;
}
}
2021-07-20 01:06:51 +02:00
@media (max-width: 1024px) {
nav {
2019-07-28 12:15:52 +02:00
width: 175px;
}
}
/* Buttons */
2021-07-20 01:05:45 +02:00
.button:not(.button--flat.button--red) {
2019-07-28 12:15:52 +02:00
background: var(--button-color);
2021-07-20 01:06:51 +02:00
color: var(--button-text);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
.button:hover:not(.button--flat.button--red),
.button:active:not(.button--flat.button--red),
.button:focus:not(.button--flat.button--red) {
2019-07-28 12:15:52 +02:00
background: var(--button-color-hover);
2021-07-20 01:05:45 +02:00
color: var(--button-text-hover);
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:05:45 +02:00
2021-07-20 01:06:51 +02:00
button:hover:not(.action),
input[type=submit]:hover {
2021-07-20 01:05:45 +02:00
color: var(--button-text-hover);
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
.button--flat {
margin-left: 5px;
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
.button--flat:hover {
background: var(--dark-red);
color: #FFF;
margin-left: 5px;
}
#editor-container {
background: var(--modal-bg-color);
}
2021-07-20 01:06:51 +02:00
2021-07-20 01:05:45 +02:00
/* ACE EDITOR */
.ace-chrome .ace_gutter {
background: #282a36 !important;
2021-07-20 01:06:51 +02:00
color: rgb(144, 145, 148) !important;
2021-07-20 01:05:45 +02:00
}
.ace-chrome .ace_print-margin {
width: 1px;
background: #44475a
}
.ace-chrome {
background-color: #282a36;
color: #f8f8f2
}
.ace-chrome .ace_cursor {
color: #f8f8f0
}
.ace-chrome .ace_marker-layer .ace_selection {
background: #44475a
2019-07-28 12:15:52 +02:00
}
2021-07-20 01:05:45 +02:00
.ace-chrome.ace_multiselect .ace_selection.ace_start {
box-shadow: 0 0 3px 0px #282a36;
border-radius: 2px
}
.ace-chrome .ace_marker-layer .ace_step {
background: rgb(198, 219, 174)
}
.ace-chrome .ace_marker-layer .ace_bracket {
margin: -1px 0 0 -1px;
border: 1px solid #a29709
}
.ace-chrome .ace_marker-layer .ace_active-line {
background: #44475a
}
.ace-chrome .ace_gutter-active-line {
background-color: #44475a
}
.ace-chrome .ace_marker-layer .ace_selected-word {
box-shadow: 0px 0px 0px 1px #a29709;
border-radius: 3px;
}
.ace-chrome .ace_fold {
background-color: #50fa7b;
border-color: #f8f8f2
}
.ace-chrome .ace_keyword {
color: #ff79c6
}
.ace-chrome .ace_constant.ace_language {
color: #bd93f9
}
.ace-chrome .ace_constant.ace_numeric {
color: #bd93f9
}
.ace-chrome .ace_constant.ace_character {
color: #bd93f9
}
.ace-chrome .ace_constant.ace_character.ace_escape {
color: #ff79c6
}
.ace-chrome .ace_constant.ace_other {
color: #bd93f9
}
.ace-chrome .ace_support.ace_function {
color: #8be9fd
}
.ace-chrome .ace_support.ace_constant {
color: #6be5fd
}
.ace-chrome .ace_support.ace_class {
font-style: italic;
color: #66d9ef
}
.ace-chrome .ace_support.ace_type {
font-style: italic;
color: #66d9ef
}
.ace-chrome .ace_storage {
color: #ff79c6
}
.ace-chrome .ace_storage.ace_type {
font-style: italic;
color: #8be9fd
}
.ace-chrome .ace_invalid {
color: #F8F8F0;
background-color: #ff79c6
}
.ace-chrome .ace_invalid.ace_deprecated {
color: #F8F8F0;
background-color: #bd93f9
}
.ace-chrome .ace_string {
color: #f1fa8c
}
.ace-chrome .ace_comment {
color: #6272a4
}
.ace-chrome .ace_variable {
color: #50fa7b
}
.ace-chrome .ace_variable.ace_parameter {
font-style: italic;
color: #ffb86c
}
.ace-chrome .ace_entity.ace_other.ace_attribute-name {
color: #50fa7b
}
.ace-chrome .ace_entity.ace_name.ace_function {
color: #50fa7b
}
.ace-chrome .ace_entity.ace_name.ace_tag {
color: #ff79c6
}
.ace-chrome .ace_invisible {
color: #626680;
}
.ace-chrome .ace_indent-guide {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYHB3d/8PAAOIAdULw8qMAAAAAElFTkSuQmCC) right repeat-y
}
.credits {
color: var(--text-muted);
}