Works with the AppsScript Color extension to darken the areas it doesn't touch.
Google Apps Script editor by BobRupholdt
Details
AuthorBobRupholdt
LicenseNo License
Categoryhttps://script.google.com/
Created
Updated
Size3.5 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Google Apps Script editor
@version 20240613.20.21
@namespace https://userstyles.world/user/BobRupholdt
@description Works with the AppsScript Color extension to darken the areas it doesn't touch.
@author BobRupholdt
@license No License
==/UserStyle== */
@-moz-document domain("script.google.com") {
body {
background-color: #4c4c4c;
}
#gb {
/* banner */
background-color: #343434 !important;
}
.gb_qa svg,
.gb_Vc svg,
.gb_hd .gb_pd,
.gb_7c .gb_pd {
/* Banner text */
color: rgb(128, 128, 129);
opacity: 1;
}
.UGZzee {
/* banner project name */
color: rgba(128, 128, 129, .42)
}
.UGZzee:hover {
/* banner project name */
color: rgb(128, 128, 129)
}
.asc_FolderRoot {
/* files list */
background: #343434;
position: relative;
padding-bottom: 7px;
padding-left: 13px;
margin-bottom: -1px;
}
.td5WLe {
/* left side bar */
background: #343434;
}
.b7QOjc {
/* left side buttons */
padding-top: 8px;
color: rgb(128, 128, 129);
-webkit-user-select: none;
}
/*
.fKz7Od {
color: red;
fill: red;
}
*/
.y2Opbf {
/* files listparent sections (Files, Libraries, Services) */
color: #bababa;
}
/*
.pLZ8ve .VfPpkd-kBDsod {
color: red;
}
*/
.rgrYqe .VfPpkd-kBDsod/* plus sign on files list */
,
.wIlPPc .VfPpkd-kBDsod/* plus sign on libaries and services */
{
color: #bababa;
}
.JRtysb {
/* support question mark icon */
color: #bababa;
}
.asc_FolderRoot li[aria-selected="false"] {
/* script file list */
background-color: inherit;
color: #bababa;
}
.LjDxcd:not(:disabled) {
/* action bar buttons */
color: #bababa;
color: var(--gm-neutraltextbutton-ink-color, #bababa);
}
.IVKqHd.C9y3Me .TQNnQ {
/* debug button ion */
color: #bababa;
fill: #bababa;
}
.LjDxcd:hover:not(:disabled),
.LjDxcd.VfPpkd-ksKsZd-mWPk3d-OWXEXe-AHe6Kc-XpnDCe:not(:disabled),
.LjDxcd:not(.VfPpkd-ksKsZd-mWPk3d):focus:not(:disabled),
.LjDxcd:active:not(:disabled) {
/* action bar buttons hover */
color: #bababa;
color: var(--gm-neutraltextbutton-ink-color--stateful, #bababa);
}
.IVKqHd.kQidhf[disabled] .VfPpkd-kBDsod,
.IVKqHd.C9y3Me[disabled] .TQNnQ {
/* action bar buttons disabled */
color: #7e7e7e;
fill: #7e7e7e;
}
.pLZ8ve .VfPpkd-kBDsod {
/* sort files icon */
color: #bababa;
}
.VsRsme .ry3kXd .vRMGwf {
/* function select box */
color: #bababa;
}
.VsRsme:hover .ry3kXd .vRMGwf {
/* function select box hover */
color: #bababa;
}
.VsRsme .e2CuFe {
/* function select box icon */
border-color: #bababa transparent;
}
.VsRsme:hover .e2CuFe {
/* function select box icon hover */
border-color: #bababa transparent;
}
.kPlv1.kPlv1,
.kPlv1:focus:not(:disabled),
.kPlv1:hover:not(:disabled) {
/* execution log button */
background-color: #bababa;
color: #343434;
}
.E1XeTd {
/* execution log background */
background-color: #e3e3e3;
}
.oLvPce {
/* execution log banner */
color: #bababa;
}
.fHhrY {
/* execution log entries */
background-color: #dcdcdc;
color: black;
}
.ptNZqd:first-child {
/* execution log start/end entries */
background-color: #cecece;
color: black;
}
.fHhrY.ptNZqd:not(:first-child),
.nN3Fac, .qwuQDe, .lShend, .b3Nhpc {
/* execution log entries ERROR */
background-color: rgb(252, 232, 230);
color: rgb(165, 14, 14);
}
.ptNZqd + .fHhrY {
/* execution log entries border */
border-top: 1px solid rgb(165 165 165);
}
}