Skip to content

Instantly share code, notes, and snippets.

View UliTroyo's full-sized avatar

Uli Troyo UliTroyo

View GitHub Profile
@UliTroyo
UliTroyo / tree-sitter.css
Created June 30, 2023 05:45
Tree-sitter stylesheet to view at night no joke this time I'm tired.
html {
--bg: #19191a;
--bg-lighter: #202021;
--fg: #f0c894;
--bright-black: #5a4c4f;
--bright-blue: #4d8dcf;
--bright-cyan: #00ae91;
--bright-green: #65c74f;
--bright-magenta: #c869c9;
--bright-red: #ff5063;
@UliTroyo
UliTroyo / validator.w3.org.nu.css
Created June 25, 2023 20:50
A W3C nu HTML validator stylesheet for nighttime reading without searing eye pain.
:root {
--bg: #19191a;
--bg-lighter: #202021;
--fg: #f0c894;
--bright-black: #5a4c4f;
--bright-blue: #4d8dcf;
--bright-cyan: #00ae91;
--bright-green: #65c74f;
--bright-magenta: #c869c9;
--bright-red: #ff5063;
@UliTroyo
UliTroyo / div-depravity.css
Last active June 21, 2023 05:45
A stylesheet to suss out frontend psychopathy.
/*
DIV DEPRAVITY: a stylesheet to suss out frontend psychopathy.
Colors denote how many <div> element levels we're in.
BLUE: 1-2
CYAN: 3-5
GREEN: 5-10
YELLOW: ~15
ORANGE: ~20
RED: ~25
@UliTroyo
UliTroyo / paper.css
Last active June 21, 2023 22:41
Paper.js docs styles so reading them at night doesn't cause bleeding eyes
:root {
--bisquelike: #EAE0D3;
--darkbisque: #685E51;
--main-bg: #282826;
}
* {
box-sizing: border-box;
}
body {
background: var(--main-bg);
@UliTroyo
UliTroyo / html.spec.whatwg.css
Last active December 18, 2022 19:12
HTML spec styles to read at night
html {
--bg: #19191a;
--bg-lighter: #202021;
--fg: #f0c894;
--bright-black: #5a4c4f;
--bright-blue: #4d8dcf;
--bright-cyan: #00ae91;
--bright-green: #65c74f;
--bright-magenta: #c869c9;
--bright-red: #ff5063;
@UliTroyo
UliTroyo / code.visualstudio.css
Last active June 26, 2023 00:13
Visual Studio Code doc styles to make them readable at night
:root {
--main-bg: #222;
--accent-bg: #DBBBDB; /* thistle-ish */
--dark-bg: #111;
--main-text: ghostwhite;
--accent-border: #8A7A8A; /* taupe gray */
--accent-highlight: #135CA3; /* denim */
--accent-text: black;
--active-link: dodgerblue;
@UliTroyo
UliTroyo / microsoft.github.css
Last active December 17, 2022 07:33
Languase Server Protocol docs styles to read at night.
html {
--bg-sidebar: #aab0cc;
--bg-blue: darkslateblue;
--fg-purple: #b690ff;
}
body {
background-color: #222 !important;
color: var(--white) !important;
}
@UliTroyo
UliTroyo / vlang.css
Created December 8, 2022 06:26
V homepage styles so reading it at night doesn't punch you in the face.
html {
--bg-black: #091220;
--bg-blue: #085181;
--bg-dark-blue: #0a263c;
--fg-blue: #2f7cb4;
--fg-bright-blue: #aacad4;
--fg-white: #cfcfcf;
}
body {
background-color: var(--bg-blue);
@UliTroyo
UliTroyo / vlang-stdlib.css
Created December 8, 2022 06:25
V stdlib doc styles so reading them at night doesn't punch you in the face.
:root {
--bg-black: #091220;
--bg-blue: #264565;
--bg-dark-blue: #202734;
--fg-blue: deepskyblue;
--fg-bright-blue: lightskyblue;
--fg-green: chartreuse;
--fg-grey: #aaa;
--fg-purple: mediumorchid;
--fg-white: mintcream;
@UliTroyo
UliTroyo / broot.css
Last active December 8, 2022 04:08
Broot doc styles so reading them at night doesn't punch you in the face.
/* Blue night colors for the Broot docs */
html {
--bg-dark: #0e0e0e;
--bg-blue: #123;
--fg-blue: #2da5e7;
--fg-white: #ccc;
--black: black;
--white: white;
}