├── .bassignore ├── .bundle └── config ├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Caddyfile ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── Makefile ├── README.md ├── bass ├── bass-loop.bass ├── bass.lock ├── bump-image ├── default-init │ ├── bass.lock │ ├── fs.go │ └── init.bass ├── github-hook ├── github.bass └── start ├── controller ├── controller.go ├── integrations │ └── events │ │ ├── controller.go │ │ └── github.go ├── runners │ └── controller.go ├── runs │ └── controller.go ├── thunks │ └── controller.go └── vertex │ └── controller.go ├── default.nix ├── docs └── diagram.md ├── flake.lock ├── flake.nix ├── gemset.nix ├── go.mod ├── go.sum ├── hack ├── base16-tmpl ├── build ├── create-migration ├── develop ├── generate-models ├── get-nix-vendorsha ├── rubby └── with-creds ├── migrations ├── 20220524015658_init.down.sql ├── 20220524015658_init.up.sql ├── 20220528232854_runs_user_id_fkey.down.sql ├── 20220528232854_runs_user_id_fkey.up.sql ├── 20220606044956_remote_runtimes.down.sql ├── 20220606044956_remote_runtimes.up.sql ├── 20220627020422_add_run_metadata.down.sql ├── 20220627020422_add_run_metadata.up.sql └── fs.go ├── nix ├── deps.nix └── vendorSha256.txt ├── package.json ├── pkg ├── bassgh │ ├── client.go │ └── fs.go ├── blobs │ ├── blobs.go │ └── logs.go ├── cfg │ └── config.go ├── ghapp │ └── transport.go ├── logs │ └── logs.go ├── models │ ├── conn.go │ ├── db.xo.go │ ├── findrunresult.xo.go │ ├── indexrunsresult.xo.go │ ├── meta.go │ ├── run.go │ ├── run.xo.go │ ├── runtime.xo.go │ ├── schemamigration.xo.go │ ├── service.xo.go │ ├── thunk.xo.go │ ├── user.xo.go │ ├── vertex.xo.go │ └── vertexedge.xo.go ├── present │ ├── avatar.go │ ├── duration.go │ ├── json.go │ ├── package.go │ ├── run.go │ ├── thunk.go │ ├── user.go │ ├── vertex.go │ └── workaround.go ├── runnel │ ├── auth.go │ ├── forward.go │ └── server.go └── runs │ └── record.go ├── pnpm-lock.yaml ├── public ├── css │ ├── ansi.css │ ├── assets │ │ ├── IOSEVKA-LICENSE.md │ │ ├── iosevka-bold.ttf │ │ ├── iosevka-bold.woff │ │ ├── iosevka-bold.woff2 │ │ ├── iosevka-bolditalic.ttf │ │ ├── iosevka-bolditalic.woff │ │ ├── iosevka-bolditalic.woff2 │ │ ├── iosevka-boldoblique.ttf │ │ ├── iosevka-boldoblique.woff │ │ ├── iosevka-boldoblique.woff2 │ │ ├── iosevka-extralight.ttf │ │ ├── iosevka-extralight.woff │ │ ├── iosevka-extralight.woff2 │ │ ├── iosevka-extralightitalic.ttf │ │ ├── iosevka-extralightitalic.woff │ │ ├── iosevka-extralightitalic.woff2 │ │ ├── iosevka-extralightoblique.ttf │ │ ├── iosevka-extralightoblique.woff │ │ ├── iosevka-extralightoblique.woff2 │ │ ├── iosevka-heavy.ttf │ │ ├── iosevka-heavy.woff │ │ ├── iosevka-heavy.woff2 │ │ ├── iosevka-heavyitalic.ttf │ │ ├── iosevka-heavyitalic.woff │ │ ├── iosevka-heavyitalic.woff2 │ │ ├── iosevka-heavyoblique.ttf │ │ ├── iosevka-heavyoblique.woff │ │ ├── iosevka-heavyoblique.woff2 │ │ ├── iosevka-italic.ttf │ │ ├── iosevka-italic.woff │ │ ├── iosevka-italic.woff2 │ │ ├── iosevka-light.ttf │ │ ├── iosevka-light.woff │ │ ├── iosevka-light.woff2 │ │ ├── iosevka-lightitalic.ttf │ │ ├── iosevka-lightitalic.woff │ │ ├── iosevka-lightitalic.woff2 │ │ ├── iosevka-lightoblique.ttf │ │ ├── iosevka-lightoblique.woff │ │ ├── iosevka-lightoblique.woff2 │ │ ├── iosevka-medium.ttf │ │ ├── iosevka-medium.woff │ │ ├── iosevka-medium.woff2 │ │ ├── iosevka-mediumitalic.ttf │ │ ├── iosevka-mediumitalic.woff │ │ ├── iosevka-mediumitalic.woff2 │ │ ├── iosevka-mediumoblique.ttf │ │ ├── iosevka-mediumoblique.woff │ │ ├── iosevka-mediumoblique.woff2 │ │ ├── iosevka-oblique.ttf │ │ ├── iosevka-oblique.woff │ │ ├── iosevka-oblique.woff2 │ │ ├── iosevka-regular.ttf │ │ ├── iosevka-regular.woff │ │ ├── iosevka-regular.woff2 │ │ ├── iosevka-thin.ttf │ │ ├── iosevka-thin.woff │ │ ├── iosevka-thin.woff2 │ │ ├── iosevka-thinitalic.ttf │ │ ├── iosevka-thinitalic.woff │ │ ├── iosevka-thinitalic.woff2 │ │ ├── iosevka-thinoblique.ttf │ │ ├── iosevka-thinoblique.woff │ │ └── iosevka-thinoblique.woff2 │ ├── base16 │ │ ├── base16-3024.css │ │ ├── base16-apathy.css │ │ ├── base16-apprentice.css │ │ ├── base16-ashes.css │ │ ├── base16-atelier-cave-light.css │ │ ├── base16-atelier-cave.css │ │ ├── base16-atelier-dune-light.css │ │ ├── base16-atelier-dune.css │ │ ├── base16-atelier-estuary-light.css │ │ ├── base16-atelier-estuary.css │ │ ├── base16-atelier-forest-light.css │ │ ├── base16-atelier-forest.css │ │ ├── base16-atelier-heath-light.css │ │ ├── base16-atelier-heath.css │ │ ├── base16-atelier-lakeside-light.css │ │ ├── base16-atelier-lakeside.css │ │ ├── base16-atelier-plateau-light.css │ │ ├── base16-atelier-plateau.css │ │ ├── base16-atelier-savanna-light.css │ │ ├── base16-atelier-savanna.css │ │ ├── base16-atelier-seaside-light.css │ │ ├── base16-atelier-seaside.css │ │ ├── base16-atelier-sulphurpool-light.css │ │ ├── base16-atelier-sulphurpool.css │ │ ├── base16-atlas.css │ │ ├── base16-bespin.css │ │ ├── base16-black-metal-bathory.css │ │ ├── base16-black-metal-burzum.css │ │ ├── base16-black-metal-dark-funeral.css │ │ ├── base16-black-metal-gorgoroth.css │ │ ├── base16-black-metal-immortal.css │ │ ├── base16-black-metal-khold.css │ │ ├── base16-black-metal-marduk.css │ │ ├── base16-black-metal-mayhem.css │ │ ├── base16-black-metal-nile.css │ │ ├── base16-black-metal-venom.css │ │ ├── base16-black-metal.css │ │ ├── base16-brewer.css │ │ ├── base16-bright.css │ │ ├── base16-brogrammer.css │ │ ├── base16-brushtrees-dark.css │ │ ├── base16-brushtrees.css │ │ ├── base16-catppuccin.css │ │ ├── base16-chalk.css │ │ ├── base16-circus.css │ │ ├── base16-classic-dark.css │ │ ├── base16-classic-light.css │ │ ├── base16-codeschool.css │ │ ├── base16-colors.css │ │ ├── base16-cupcake.css │ │ ├── base16-cupertino.css │ │ ├── base16-danqing.css │ │ ├── base16-darcula.css │ │ ├── base16-darkmoss.css │ │ ├── base16-darktooth.css │ │ ├── base16-darkviolet.css │ │ ├── base16-decaf.css │ │ ├── base16-default-dark.css │ │ ├── base16-default-light.css │ │ ├── base16-dirtysea.css │ │ ├── base16-dracula.css │ │ ├── base16-edge-dark.css │ │ ├── base16-edge-light.css │ │ ├── base16-eighties.css │ │ ├── base16-embers.css │ │ ├── base16-equilibrium-dark.css │ │ ├── base16-equilibrium-gray-dark.css │ │ ├── base16-equilibrium-gray-light.css │ │ ├── base16-equilibrium-light.css │ │ ├── base16-espresso.css │ │ ├── base16-eva-dim.css │ │ ├── base16-eva.css │ │ ├── base16-flat.css │ │ ├── base16-framer.css │ │ ├── base16-fruit-soda.css │ │ ├── base16-gigavolt.css │ │ ├── base16-github.css │ │ ├── base16-google-dark.css │ │ ├── base16-google-light.css │ │ ├── base16-grayscale-dark.css │ │ ├── base16-grayscale-light.css │ │ ├── base16-green-screen.css │ │ ├── base16-greenscreen.css │ │ ├── base16-gruvbox-dark-hard.css │ │ ├── base16-gruvbox-dark-medium.css │ │ ├── base16-gruvbox-dark-pale.css │ │ ├── base16-gruvbox-dark-soft.css │ │ ├── base16-gruvbox-light-hard.css │ │ ├── base16-gruvbox-light-medium.css │ │ ├── base16-gruvbox-light-soft.css │ │ ├── base16-hardcore.css │ │ ├── base16-harmonic-dark.css │ │ ├── base16-harmonic-light.css │ │ ├── base16-harmonic16-dark.css │ │ ├── base16-harmonic16-light.css │ │ ├── base16-heetch-light.css │ │ ├── base16-heetch.css │ │ ├── base16-helios.css │ │ ├── base16-hopscotch.css │ │ ├── base16-horizon-dark.css │ │ ├── base16-horizon-light.css │ │ ├── base16-horizon-terminal-dark.css │ │ ├── base16-horizon-terminal-light.css │ │ ├── base16-humanoid-dark.css │ │ ├── base16-humanoid-light.css │ │ ├── base16-ia-dark.css │ │ ├── base16-ia-light.css │ │ ├── base16-icy.css │ │ ├── base16-ir-black.css │ │ ├── base16-irblack.css │ │ ├── base16-isotope.css │ │ ├── base16-kimber.css │ │ ├── base16-london-tube.css │ │ ├── base16-macintosh.css │ │ ├── base16-marrakesh.css │ │ ├── base16-materia.css │ │ ├── base16-material-darker.css │ │ ├── base16-material-lighter.css │ │ ├── base16-material-palenight.css │ │ ├── base16-material-vivid.css │ │ ├── base16-material.css │ │ ├── base16-mellow-purple.css │ │ ├── base16-mexico-light.css │ │ ├── base16-mocha.css │ │ ├── base16-monokai.css │ │ ├── base16-nebula.css │ │ ├── base16-nord.css │ │ ├── base16-nova.css │ │ ├── base16-ocean.css │ │ ├── base16-oceanicnext.css │ │ ├── base16-one-light.css │ │ ├── base16-onedark.css │ │ ├── base16-outrun-dark.css │ │ ├── base16-papercolor-dark.css │ │ ├── base16-papercolor-light.css │ │ ├── base16-paraiso.css │ │ ├── base16-pasque.css │ │ ├── base16-phd.css │ │ ├── base16-pico.css │ │ ├── base16-pinky.css │ │ ├── base16-pop.css │ │ ├── base16-porple.css │ │ ├── base16-qualia.css │ │ ├── base16-railscasts.css │ │ ├── base16-rebecca.css │ │ ├── base16-rose-pine-dawn.css │ │ ├── base16-rose-pine-moon.css │ │ ├── base16-rose-pine.css │ │ ├── base16-sagelight.css │ │ ├── base16-sakura.css │ │ ├── base16-sandcastle.css │ │ ├── base16-seti-ui.css │ │ ├── base16-seti.css │ │ ├── base16-shades-of-purple.css │ │ ├── base16-shapeshifter.css │ │ ├── base16-silk-dark.css │ │ ├── base16-silk-light.css │ │ ├── base16-snazzy.css │ │ ├── base16-solar-flare.css │ │ ├── base16-solarflare-light.css │ │ ├── base16-solarflare.css │ │ ├── base16-solarized-dark.css │ │ ├── base16-solarized-light.css │ │ ├── base16-spacemacs.css │ │ ├── base16-summercamp.css │ │ ├── base16-summerfruit-dark.css │ │ ├── base16-summerfruit-light.css │ │ ├── base16-synth-midnight-dark.css │ │ ├── base16-synth-midnight-light.css │ │ ├── base16-tango.css │ │ ├── base16-tender.css │ │ ├── base16-tokyo-city-dark.css │ │ ├── base16-tokyo-city-light.css │ │ ├── base16-tokyo-city-terminal-dark.css │ │ ├── base16-tokyo-city-terminal-light.css │ │ ├── base16-tokyo-night-dark.css │ │ ├── base16-tokyo-night-light.css │ │ ├── base16-tokyo-night-storm.css │ │ ├── base16-tokyo-night-terminal-dark.css │ │ ├── base16-tokyo-night-terminal-light.css │ │ ├── base16-tokyo-night-terminal-storm.css │ │ ├── base16-tomorrow-night-eighties.css │ │ ├── base16-tomorrow-night.css │ │ ├── base16-tomorrow.css │ │ ├── base16-tube.css │ │ ├── base16-twilight.css │ │ ├── base16-unikitty-dark.css │ │ ├── base16-unikitty-light.css │ │ ├── base16-vulcan.css │ │ ├── base16-windows-10-light.css │ │ ├── base16-windows-10.css │ │ ├── base16-windows-95-light.css │ │ ├── base16-windows-95.css │ │ ├── base16-windows-highcontrast-light.css │ │ ├── base16-windows-highcontrast.css │ │ ├── base16-windows-nt-light.css │ │ ├── base16-windows-nt.css │ │ ├── base16-woodland.css │ │ ├── base16-xcode-dusk.css │ │ └── base16-zenburn.css │ ├── fs.go │ ├── global.css │ ├── highlight.css │ ├── images │ │ └── construction.gif │ └── iosevka.css ├── ico │ ├── base16-3024.svg │ ├── base16-apathy.svg │ ├── base16-apprentice.svg │ ├── base16-ashes.svg │ ├── base16-atelier-cave-light.svg │ ├── base16-atelier-cave.svg │ ├── base16-atelier-dune-light.svg │ ├── base16-atelier-dune.svg │ ├── base16-atelier-estuary-light.svg │ ├── base16-atelier-estuary.svg │ ├── base16-atelier-forest-light.svg │ ├── base16-atelier-forest.svg │ ├── base16-atelier-heath-light.svg │ ├── base16-atelier-heath.svg │ ├── base16-atelier-lakeside-light.svg │ ├── base16-atelier-lakeside.svg │ ├── base16-atelier-plateau-light.svg │ ├── base16-atelier-plateau.svg │ ├── base16-atelier-savanna-light.svg │ ├── base16-atelier-savanna.svg │ ├── base16-atelier-seaside-light.svg │ ├── base16-atelier-seaside.svg │ ├── base16-atelier-sulphurpool-light.svg │ ├── base16-atelier-sulphurpool.svg │ ├── base16-atlas.svg │ ├── base16-bespin.svg │ ├── base16-black-metal-bathory.svg │ ├── base16-black-metal-burzum.svg │ ├── base16-black-metal-dark-funeral.svg │ ├── base16-black-metal-gorgoroth.svg │ ├── base16-black-metal-immortal.svg │ ├── base16-black-metal-khold.svg │ ├── base16-black-metal-marduk.svg │ ├── base16-black-metal-mayhem.svg │ ├── base16-black-metal-nile.svg │ ├── base16-black-metal-venom.svg │ ├── base16-black-metal.svg │ ├── base16-brewer.svg │ ├── base16-bright.svg │ ├── base16-brogrammer.svg │ ├── base16-brushtrees-dark.svg │ ├── base16-brushtrees.svg │ ├── base16-catppuccin.svg │ ├── base16-chalk.svg │ ├── base16-circus.svg │ ├── base16-classic-dark.svg │ ├── base16-classic-light.svg │ ├── base16-codeschool.svg │ ├── base16-colors.svg │ ├── base16-cupcake.svg │ ├── base16-cupertino.svg │ ├── base16-danqing.svg │ ├── base16-darcula.svg │ ├── base16-darkmoss.svg │ ├── base16-darktooth.svg │ ├── base16-darkviolet.svg │ ├── base16-decaf.svg │ ├── base16-default-dark.svg │ ├── base16-default-light.svg │ ├── base16-dirtysea.svg │ ├── base16-dracula.svg │ ├── base16-edge-dark.svg │ ├── base16-edge-light.svg │ ├── base16-eighties.svg │ ├── base16-embers.svg │ ├── base16-equilibrium-dark.svg │ ├── base16-equilibrium-gray-dark.svg │ ├── base16-equilibrium-gray-light.svg │ ├── base16-equilibrium-light.svg │ ├── base16-espresso.svg │ ├── base16-eva-dim.svg │ ├── base16-eva.svg │ ├── base16-flat.svg │ ├── base16-framer.svg │ ├── base16-fruit-soda.svg │ ├── base16-gigavolt.svg │ ├── base16-github.svg │ ├── base16-google-dark.svg │ ├── base16-google-light.svg │ ├── base16-grayscale-dark.svg │ ├── base16-grayscale-light.svg │ ├── base16-green-screen.svg │ ├── base16-greenscreen.svg │ ├── base16-gruvbox-dark-hard.svg │ ├── base16-gruvbox-dark-medium.svg │ ├── base16-gruvbox-dark-pale.svg │ ├── base16-gruvbox-dark-soft.svg │ ├── base16-gruvbox-light-hard.svg │ ├── base16-gruvbox-light-medium.svg │ ├── base16-gruvbox-light-soft.svg │ ├── base16-hardcore.svg │ ├── base16-harmonic-dark.svg │ ├── base16-harmonic-light.svg │ ├── base16-harmonic16-dark.svg │ ├── base16-harmonic16-light.svg │ ├── base16-heetch-light.svg │ ├── base16-heetch.svg │ ├── base16-helios.svg │ ├── base16-hopscotch.svg │ ├── base16-horizon-dark.svg │ ├── base16-horizon-light.svg │ ├── base16-horizon-terminal-dark.svg │ ├── base16-horizon-terminal-light.svg │ ├── base16-humanoid-dark.svg │ ├── base16-humanoid-light.svg │ ├── base16-ia-dark.svg │ ├── base16-ia-light.svg │ ├── base16-icy.svg │ ├── base16-ir-black.svg │ ├── base16-irblack.svg │ ├── base16-isotope.svg │ ├── base16-kimber.svg │ ├── base16-london-tube.svg │ ├── base16-macintosh.svg │ ├── base16-marrakesh.svg │ ├── base16-materia.svg │ ├── base16-material-darker.svg │ ├── base16-material-lighter.svg │ ├── base16-material-palenight.svg │ ├── base16-material-vivid.svg │ ├── base16-material.svg │ ├── base16-mellow-purple.svg │ ├── base16-mexico-light.svg │ ├── base16-mocha.svg │ ├── base16-monokai.svg │ ├── base16-nebula.svg │ ├── base16-nord.svg │ ├── base16-nova.svg │ ├── base16-ocean.svg │ ├── base16-oceanicnext.svg │ ├── base16-one-light.svg │ ├── base16-onedark.svg │ ├── base16-outrun-dark.svg │ ├── base16-papercolor-dark.svg │ ├── base16-papercolor-light.svg │ ├── base16-paraiso.svg │ ├── base16-pasque.svg │ ├── base16-phd.svg │ ├── base16-pico.svg │ ├── base16-pinky.svg │ ├── base16-pop.svg │ ├── base16-porple.svg │ ├── base16-qualia.svg │ ├── base16-railscasts.svg │ ├── base16-rebecca.svg │ ├── base16-rose-pine-dawn.svg │ ├── base16-rose-pine-moon.svg │ ├── base16-rose-pine.svg │ ├── base16-sagelight.svg │ ├── base16-sakura.svg │ ├── base16-sandcastle.svg │ ├── base16-seti-ui.svg │ ├── base16-seti.svg │ ├── base16-shades-of-purple.svg │ ├── base16-shapeshifter.svg │ ├── base16-silk-dark.svg │ ├── base16-silk-light.svg │ ├── base16-snazzy.svg │ ├── base16-solar-flare.svg │ ├── base16-solarflare-light.svg │ ├── base16-solarflare.svg │ ├── base16-solarized-dark.svg │ ├── base16-solarized-light.svg │ ├── base16-spacemacs.svg │ ├── base16-summercamp.svg │ ├── base16-summerfruit-dark.svg │ ├── base16-summerfruit-light.svg │ ├── base16-synth-midnight-dark.svg │ ├── base16-synth-midnight-light.svg │ ├── base16-tango.svg │ ├── base16-tender.svg │ ├── base16-tokyo-city-dark.svg │ ├── base16-tokyo-city-light.svg │ ├── base16-tokyo-city-terminal-dark.svg │ ├── base16-tokyo-city-terminal-light.svg │ ├── base16-tokyo-night-dark.svg │ ├── base16-tokyo-night-light.svg │ ├── base16-tokyo-night-storm.svg │ ├── base16-tokyo-night-terminal-dark.svg │ ├── base16-tokyo-night-terminal-light.svg │ ├── base16-tokyo-night-terminal-storm.svg │ ├── base16-tomorrow-night-eighties.svg │ ├── base16-tomorrow-night.svg │ ├── base16-tomorrow.svg │ ├── base16-tube.svg │ ├── base16-twilight.svg │ ├── base16-unikitty-dark.svg │ ├── base16-unikitty-light.svg │ ├── base16-vulcan.svg │ ├── base16-windows-10-light.svg │ ├── base16-windows-10.svg │ ├── base16-windows-95-light.svg │ ├── base16-windows-95.svg │ ├── base16-windows-highcontrast-light.svg │ ├── base16-windows-highcontrast.svg │ ├── base16-windows-nt-light.svg │ ├── base16-windows-nt.svg │ ├── base16-woodland.svg │ ├── base16-xcode-dusk.svg │ ├── base16-zenburn.svg │ └── fs.go └── js │ ├── fs.go │ └── switcher.js ├── tools.go ├── view ├── Base16Options.svelte ├── DefaultStyle.js ├── Footer.svelte ├── Header.svelte ├── Logo.svelte ├── Octicon.svelte ├── Run.svelte ├── RunSummary.svelte ├── Runs.svelte ├── StyleSwitcher.svelte ├── Title.svelte ├── base16 │ ├── base16-3024.js │ ├── base16-apathy.js │ ├── base16-apprentice.js │ ├── base16-ashes.js │ ├── base16-atelier-cave-light.js │ ├── base16-atelier-cave.js │ ├── base16-atelier-dune-light.js │ ├── base16-atelier-dune.js │ ├── base16-atelier-estuary-light.js │ ├── base16-atelier-estuary.js │ ├── base16-atelier-forest-light.js │ ├── base16-atelier-forest.js │ ├── base16-atelier-heath-light.js │ ├── base16-atelier-heath.js │ ├── base16-atelier-lakeside-light.js │ ├── base16-atelier-lakeside.js │ ├── base16-atelier-plateau-light.js │ ├── base16-atelier-plateau.js │ ├── base16-atelier-savanna-light.js │ ├── base16-atelier-savanna.js │ ├── base16-atelier-seaside-light.js │ ├── base16-atelier-seaside.js │ ├── base16-atelier-sulphurpool-light.js │ ├── base16-atelier-sulphurpool.js │ ├── base16-atlas.js │ ├── base16-bespin.js │ ├── base16-black-metal-bathory.js │ ├── base16-black-metal-burzum.js │ ├── base16-black-metal-dark-funeral.js │ ├── base16-black-metal-gorgoroth.js │ ├── base16-black-metal-immortal.js │ ├── base16-black-metal-khold.js │ ├── base16-black-metal-marduk.js │ ├── base16-black-metal-mayhem.js │ ├── base16-black-metal-nile.js │ ├── base16-black-metal-venom.js │ ├── base16-black-metal.js │ ├── base16-brewer.js │ ├── base16-bright.js │ ├── base16-brogrammer.js │ ├── base16-brushtrees-dark.js │ ├── base16-brushtrees.js │ ├── base16-catppuccin.js │ ├── base16-chalk.js │ ├── base16-circus.js │ ├── base16-classic-dark.js │ ├── base16-classic-light.js │ ├── base16-codeschool.js │ ├── base16-colors.js │ ├── base16-cupcake.js │ ├── base16-cupertino.js │ ├── base16-danqing.js │ ├── base16-darcula.js │ ├── base16-darkmoss.js │ ├── base16-darktooth.js │ ├── base16-darkviolet.js │ ├── base16-decaf.js │ ├── base16-default-dark.js │ ├── base16-default-light.js │ ├── base16-dirtysea.js │ ├── base16-dracula.js │ ├── base16-edge-dark.js │ ├── base16-edge-light.js │ ├── base16-eighties.js │ ├── base16-embers.js │ ├── base16-equilibrium-dark.js │ ├── base16-equilibrium-gray-dark.js │ ├── base16-equilibrium-gray-light.js │ ├── base16-equilibrium-light.js │ ├── base16-espresso.js │ ├── base16-eva-dim.js │ ├── base16-eva.js │ ├── base16-flat.js │ ├── base16-framer.js │ ├── base16-fruit-soda.js │ ├── base16-gigavolt.js │ ├── base16-github.js │ ├── base16-google-dark.js │ ├── base16-google-light.js │ ├── base16-grayscale-dark.js │ ├── base16-grayscale-light.js │ ├── base16-greenscreen.js │ ├── base16-gruvbox-dark-hard.js │ ├── base16-gruvbox-dark-medium.js │ ├── base16-gruvbox-dark-pale.js │ ├── base16-gruvbox-dark-soft.js │ ├── base16-gruvbox-light-hard.js │ ├── base16-gruvbox-light-medium.js │ ├── base16-gruvbox-light-soft.js │ ├── base16-hardcore.js │ ├── base16-harmonic-dark.js │ ├── base16-harmonic-light.js │ ├── base16-heetch-light.js │ ├── base16-heetch.js │ ├── base16-helios.js │ ├── base16-hopscotch.js │ ├── base16-horizon-dark.js │ ├── base16-horizon-light.js │ ├── base16-horizon-terminal-dark.js │ ├── base16-horizon-terminal-light.js │ ├── base16-humanoid-dark.js │ ├── base16-humanoid-light.js │ ├── base16-ia-dark.js │ ├── base16-ia-light.js │ ├── base16-icy.js │ ├── base16-irblack.js │ ├── base16-isotope.js │ ├── base16-kimber.js │ ├── base16-macintosh.js │ ├── base16-marrakesh.js │ ├── base16-materia.js │ ├── base16-material-darker.js │ ├── base16-material-lighter.js │ ├── base16-material-palenight.js │ ├── base16-material-vivid.js │ ├── base16-material.js │ ├── base16-mellow-purple.js │ ├── base16-mexico-light.js │ ├── base16-mocha.js │ ├── base16-monokai.js │ ├── base16-nebula.js │ ├── base16-nord.js │ ├── base16-nova.js │ ├── base16-ocean.js │ ├── base16-oceanicnext.js │ ├── base16-one-light.js │ ├── base16-onedark.js │ ├── base16-outrun-dark.js │ ├── base16-papercolor-dark.js │ ├── base16-papercolor-light.js │ ├── base16-paraiso.js │ ├── base16-pasque.js │ ├── base16-phd.js │ ├── base16-pico.js │ ├── base16-pinky.js │ ├── base16-pop.js │ ├── base16-porple.js │ ├── base16-qualia.js │ ├── base16-railscasts.js │ ├── base16-rebecca.js │ ├── base16-rose-pine-dawn.js │ ├── base16-rose-pine-moon.js │ ├── base16-rose-pine.js │ ├── base16-sagelight.js │ ├── base16-sakura.js │ ├── base16-sandcastle.js │ ├── base16-seti.js │ ├── base16-shades-of-purple.js │ ├── base16-shapeshifter.js │ ├── base16-silk-dark.js │ ├── base16-silk-light.js │ ├── base16-snazzy.js │ ├── base16-solarflare-light.js │ ├── base16-solarflare.js │ ├── base16-solarized-dark.js │ ├── base16-solarized-light.js │ ├── base16-spacemacs.js │ ├── base16-summercamp.js │ ├── base16-summerfruit-dark.js │ ├── base16-summerfruit-light.js │ ├── base16-synth-midnight-dark.js │ ├── base16-synth-midnight-light.js │ ├── base16-tango.js │ ├── base16-tender.js │ ├── base16-tokyo-city-dark.js │ ├── base16-tokyo-city-light.js │ ├── base16-tokyo-city-terminal-dark.js │ ├── base16-tokyo-city-terminal-light.js │ ├── base16-tokyo-night-dark.js │ ├── base16-tokyo-night-light.js │ ├── base16-tokyo-night-storm.js │ ├── base16-tokyo-night-terminal-dark.js │ ├── base16-tokyo-night-terminal-light.js │ ├── base16-tokyo-night-terminal-storm.js │ ├── base16-tomorrow-night-eighties.js │ ├── base16-tomorrow-night.js │ ├── base16-tomorrow.js │ ├── base16-tube.js │ ├── base16-twilight.js │ ├── base16-unikitty-dark.js │ ├── base16-unikitty-light.js │ ├── base16-vulcan.js │ ├── base16-windows-10-light.js │ ├── base16-windows-10.js │ ├── base16-windows-95-light.js │ ├── base16-windows-95.js │ ├── base16-windows-highcontrast-light.js │ ├── base16-windows-highcontrast.js │ ├── base16-windows-nt-light.js │ ├── base16-windows-nt.js │ ├── base16-woodland.js │ ├── base16-xcode-dusk.js │ └── base16-zenburn.js ├── index.svelte ├── runs │ ├── RunHeader.svelte │ ├── Vertex.svelte │ ├── index.svelte │ └── show.svelte ├── thunks │ ├── index.svelte │ └── show.svelte └── vertex │ └── show.svelte └── yarn.lock /.bassignore: -------------------------------------------------------------------------------- 1 | /bud 2 | /node_modules 3 | /bass 4 | !/bass/default-init/* 5 | -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: ".rubby/bundle/" 3 | BUNDLE_CACHE_ALL: "true" 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.bass linguist-language=Clojure 2 | bass/* linguist-language=Clojure 3 | -------------------------------------------------------------------------------- /Caddyfile: -------------------------------------------------------------------------------- 1 | { 2 | email suraci.alex@gmail.com 3 | } 4 | 5 | loop.bass-lang.org { 6 | tls { 7 | dns cloudflare {$CLOUDFLARE_TOKEN} 8 | } 9 | 10 | reverse_proxy { 11 | to {$PROXY_ADDR} 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # syntax = basslang/frontend:0.12.0 2 | (use (.git (linux/alpine/git)) 3 | (git:github/vito/tabs/ref/main/nix.bass) 4 | (*dir*/bass/bass-loop.bass)) 5 | 6 | (-> (from (nix:linux/busybox :flake *dir*) 7 | ($ cp (bass-loop:build *dir*) /usr/bin/bass-loop)) 8 | (with-port :http 3000) 9 | (with-port :ssh 6455) 10 | (with-entrypoint ["bass-loop" "--listen" "0.0.0.0:3000"])) 11 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | 5 | gem "mrsk" 6 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | targets=html/base16-options.tmpl public/css/main.css 2 | 3 | all: $(targets) 4 | 5 | nix/vendorSha256.txt: go.mod go.sum 6 | ./hack/get-nix-vendorsha > $@ 7 | 8 | view/Base16Options.svelte: public/css/base16/*.css hack/base16-tmpl 9 | ./hack/base16-tmpl 10 | 11 | clean: 12 | rm -f $(targets) 13 | -------------------------------------------------------------------------------- /bass/bump-image: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bass 2 | 3 | (use (*dir*/bass-loop.bass)) 4 | 5 | (def {:src src} (next *stdin*)) 6 | 7 | (defn main [tag] 8 | (publish (bass-loop:image src) (str "vito/bass-loop:" tag))) 9 | -------------------------------------------------------------------------------- /bass/default-init/fs.go: -------------------------------------------------------------------------------- 1 | package defaultinit 2 | 3 | import "embed" 4 | 5 | //go:embed * 6 | var FS embed.FS 7 | -------------------------------------------------------------------------------- /bass/default-init/init.bass: -------------------------------------------------------------------------------- 1 | ; the default git image used for bootstrapping 2 | ; 3 | ; projects may override this with their own bass/init.bass 4 | 5 | (def *memos* *dir*/bass.lock) 6 | 7 | (use (.git (linux/alpine/git))) 8 | 9 | ; returns a path to the root of the repo given a clone URL and sha 10 | (def checkout git:checkout) 11 | -------------------------------------------------------------------------------- /bass/github-hook: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bass 2 | 3 | ; memoize dependency resolution 4 | (def *memos* *dir*/bass.lock) 5 | 6 | (use (.git (linux/alpine/git)) 7 | (*dir*/bass-loop.bass) 8 | (*dir*/github.bass)) 9 | 10 | ; a set of validations to run against a checkout of the repo 11 | (defn checks [src] 12 | {:build (from (linux/alpine) 13 | ($ stat (bass-loop:build src)))}) 14 | 15 | ; called by bass-loop 16 | (defn main [] 17 | (for [event *stdin*] 18 | (github:check-hook event git:checkout checks))) 19 | -------------------------------------------------------------------------------- /controller/runners/controller.go: -------------------------------------------------------------------------------- 1 | package runners 2 | 3 | import "github.com/vito/bass-loop/pkg/runnel" 4 | 5 | type Controller struct { 6 | *runnel.Server 7 | } 8 | 9 | func (c *Controller) Index() string { 10 | return "ok" 11 | } 12 | -------------------------------------------------------------------------------- /controller/vertex/controller.go: -------------------------------------------------------------------------------- 1 | package vertex 2 | 3 | import ( 4 | "context" 5 | "fmt" 6 | ) 7 | 8 | type Controller struct { 9 | // Dependencies... 10 | } 11 | 12 | // Index of runs 13 | // GET /run 14 | func (c *Controller) Show(ctx context.Context) error { 15 | return fmt.Errorf("not implemented") 16 | } 17 | -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- 1 | { lib 2 | , pkgs 3 | }: 4 | pkgs.buildGo120Module rec { 5 | name = "bass-loop"; 6 | src = ./.; 7 | 8 | vendorSha256 = lib.fileContents ./nix/vendorSha256.txt; 9 | 10 | # don't run tests here; they're too complicated 11 | doCheck = false; 12 | } 13 | -------------------------------------------------------------------------------- /hack/build: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e -u -x 4 | 5 | cd $(dirname $0)/.. 6 | 7 | yarn 8 | 9 | bud build 10 | -------------------------------------------------------------------------------- /hack/create-migration: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e -u -x 4 | 5 | go install -tags sqlite3 github.com/golang-migrate/migrate/v4/cmd/migrate@latest 6 | 7 | cd $(dirname $0)/.. 8 | 9 | migrate create -ext sql -dir ./migrations/ "$@" 10 | -------------------------------------------------------------------------------- /hack/develop: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cd $(dirname $0)/.. 4 | 5 | if [ "$#" = "0" ]; then 6 | exec nix develop -c "$SHELL" 7 | else 8 | exec nix develop -c "$@" 9 | fi 10 | -------------------------------------------------------------------------------- /hack/get-nix-vendorsha: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env nix-shell 2 | #!nix-shell -p nix-prefetch -i bash 3 | 4 | nix-prefetch '{ sha256 }: (callPackage (import ./default.nix) { }).go-modules.overrideAttrs (_: { modSha256 = sha256; })' 5 | -------------------------------------------------------------------------------- /hack/rubby: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # flail 4 | bundix --lock 5 | bundix --magic --bundle-pack-path .rubby/bundle/ 6 | -------------------------------------------------------------------------------- /hack/with-creds: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | op run --no-masking --env-file $(dirname $0)/../creds.env -- "$@" 4 | -------------------------------------------------------------------------------- /migrations/20220524015658_init.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE services; 2 | DROP TABLE runtimes; 3 | DROP TABLE users; 4 | DROP TABLE vertex_edges; 5 | DROP TABLE vertexes; 6 | DROP TABLE runs; 7 | DROP TABLE thunks; 8 | -------------------------------------------------------------------------------- /migrations/20220606044956_remote_runtimes.down.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM services; 2 | DELETE FROM runtimes; 3 | 4 | DROP INDEX service_user_runtime_service_idx; 5 | 6 | ALTER TABLE runtimes DROP COLUMN priority; 7 | ALTER TABLE runtimes ADD COLUMN driver TEXT NOT NULL 8 | ALTER TABLE runtimes ADD COLUMN config BLOB NOT NULL; 9 | -------------------------------------------------------------------------------- /migrations/20220627020422_add_run_metadata.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE runs DROP COLUMN meta; 2 | -------------------------------------------------------------------------------- /migrations/20220627020422_add_run_metadata.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE runs ADD COLUMN meta NULL; 2 | -------------------------------------------------------------------------------- /migrations/fs.go: -------------------------------------------------------------------------------- 1 | package migrations 2 | 3 | import "embed" 4 | 5 | //go:embed *.sql 6 | var FS embed.FS 7 | -------------------------------------------------------------------------------- /nix/deps.nix: -------------------------------------------------------------------------------- 1 | { pkgs 2 | }: 3 | with pkgs; 4 | [ 5 | # for running scripts 6 | bashInteractive 7 | # go building + testing 8 | go_1_20 9 | gcc 10 | # git plumbing 11 | git 12 | # for bud 13 | yarn 14 | # for mersk 15 | ruby 16 | bundix 17 | ] 18 | -------------------------------------------------------------------------------- /nix/vendorSha256.txt: -------------------------------------------------------------------------------- 1 | sha256-z1D+IZJIARRW+Q41LtyMhuaMT3K7Oc+heBPdqO12Vck= 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bass-loop", 3 | "version": "1.0.0", 4 | "description": "bass loop dev toolchain", 5 | "repository": "https://github.com/vito/bass-loop", 6 | "author": "Alex Suraci", 7 | "license": "MIT", 8 | "private": false, 9 | "dependencies": { 10 | "@primer/octicons": "^17.3.0", 11 | "color-contrast-checker": "^2.1.0", 12 | "livebud": "^0.2.1", 13 | "svelte": "^3.48.0", 14 | "svelte-time": "^0.7.1" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /pkg/blobs/logs.go: -------------------------------------------------------------------------------- 1 | package blobs 2 | 3 | import ( 4 | "path" 5 | 6 | "github.com/vito/bass-loop/pkg/models" 7 | ) 8 | 9 | func VertexRawLogKey(vtx *models.Vertex) string { 10 | return path.Join("logs", vtx.RunID, vtx.Digest) 11 | } 12 | 13 | func VertexHTMLLogKey(vtx *models.Vertex) string { 14 | return path.Join("logs", vtx.RunID, vtx.Digest+".html") 15 | } 16 | -------------------------------------------------------------------------------- /pkg/logs/logs.go: -------------------------------------------------------------------------------- 1 | package logs 2 | 3 | import ( 4 | "github.com/vito/bass/pkg/bass" 5 | "go.uber.org/zap" 6 | ) 7 | 8 | type Logger = zap.Logger 9 | 10 | func New() *Logger { 11 | return bass.StdLogger(zap.DebugLevel) 12 | } 13 | -------------------------------------------------------------------------------- /pkg/models/meta.go: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | import "reflect" 4 | 5 | type Meta map[string]any 6 | 7 | func (m Meta) Omit() { 8 | for k, v := range m { 9 | if reflect.ValueOf(v).IsZero() { 10 | delete(m, k) 11 | } 12 | 13 | switch x := v.(type) { 14 | case Meta: 15 | x.Omit() 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /pkg/present/duration.go: -------------------------------------------------------------------------------- 1 | package present 2 | 3 | import ( 4 | "fmt" 5 | "time" 6 | ) 7 | 8 | func Duration(dt time.Duration) string { 9 | prec := 1 10 | sec := dt.Seconds() 11 | if sec < 10 { 12 | prec = 2 13 | } else if sec < 100 { 14 | prec = 1 15 | } 16 | 17 | return fmt.Sprintf("%.[2]*[1]fs", sec, prec) 18 | } 19 | -------------------------------------------------------------------------------- /pkg/present/package.go: -------------------------------------------------------------------------------- 1 | // Package present loads state from the database and turns it into properties 2 | // to expose to the frontend. 3 | // 4 | // It leverages SQLite's speed to keep loading simple and return rich data by 5 | // loading it from the database whenever it's needed, even if it's already been 6 | // loaded previously. 7 | package present 8 | -------------------------------------------------------------------------------- /pkg/present/thunk.go: -------------------------------------------------------------------------------- 1 | package present 2 | 3 | import ( 4 | "context" 5 | "fmt" 6 | 7 | "github.com/vito/bass-loop/pkg/models" 8 | ) 9 | 10 | type Thunk struct { 11 | Digest string `json:"digest"` 12 | Avatar string `json:"avatar"` 13 | } 14 | 15 | func NewThunk(ctx context.Context, db models.DB, model *models.Thunk) (*Thunk, error) { 16 | thunk := &Thunk{ 17 | Digest: model.Digest, 18 | } 19 | 20 | avatar, err := ThunkAvatar(model.Digest) 21 | if err != nil { 22 | return nil, fmt.Errorf("render avatar: %w", err) 23 | } 24 | 25 | thunk.Avatar = avatar 26 | 27 | return thunk, nil 28 | } 29 | -------------------------------------------------------------------------------- /pkg/present/user.go: -------------------------------------------------------------------------------- 1 | package present 2 | 3 | import "github.com/vito/bass-loop/pkg/models" 4 | 5 | type User struct { 6 | Login string `json:"login"` 7 | URL string `json:"url"` 8 | } 9 | 10 | func NewUser(user *models.User) *User { 11 | return &User{ 12 | Login: user.Login, 13 | URL: "https://github.com/" + user.Login, 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /pkg/present/workaround.go: -------------------------------------------------------------------------------- 1 | package present 2 | 3 | type Workaround struct{} 4 | 5 | // workaround for https://github.com/livebud/bud/issues/137 6 | func New() *Workaround { 7 | return &Workaround{} 8 | } 9 | -------------------------------------------------------------------------------- /public/css/assets/iosevka-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-bold.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-bold.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-bold.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-bolditalic.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-bolditalic.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-bolditalic.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-boldoblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-boldoblique.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-boldoblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-boldoblique.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-boldoblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-boldoblique.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-extralight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-extralight.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-extralight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-extralight.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-extralight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-extralight.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-extralightitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-extralightitalic.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-extralightitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-extralightitalic.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-extralightitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-extralightitalic.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-extralightoblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-extralightoblique.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-extralightoblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-extralightoblique.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-extralightoblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-extralightoblique.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-heavy.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-heavy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-heavy.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-heavy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-heavy.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-heavyitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-heavyitalic.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-heavyitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-heavyitalic.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-heavyitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-heavyitalic.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-heavyoblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-heavyoblique.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-heavyoblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-heavyoblique.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-heavyoblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-heavyoblique.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-italic.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-italic.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-italic.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-light.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-light.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-light.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-lightitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-lightitalic.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-lightitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-lightitalic.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-lightitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-lightitalic.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-lightoblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-lightoblique.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-lightoblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-lightoblique.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-lightoblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-lightoblique.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-medium.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-medium.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-medium.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-mediumitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-mediumitalic.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-mediumitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-mediumitalic.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-mediumitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-mediumitalic.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-mediumoblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-mediumoblique.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-mediumoblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-mediumoblique.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-mediumoblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-mediumoblique.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-oblique.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-oblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-oblique.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-oblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-oblique.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-regular.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-regular.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-regular.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-thin.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-thin.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-thin.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-thinitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-thinitalic.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-thinitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-thinitalic.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-thinitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-thinitalic.woff2 -------------------------------------------------------------------------------- /public/css/assets/iosevka-thinoblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-thinoblique.ttf -------------------------------------------------------------------------------- /public/css/assets/iosevka-thinoblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-thinoblique.woff -------------------------------------------------------------------------------- /public/css/assets/iosevka-thinoblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/assets/iosevka-thinoblique.woff2 -------------------------------------------------------------------------------- /public/css/base16/base16-3024.css: -------------------------------------------------------------------------------- 1 | /* 3024 by Jan T. Sott (http://github.com/idleberg) */ 2 | 3 | :root { 4 | --base00: #090300; 5 | --base01: #3a3432; 6 | --base02: #4a4543; 7 | --base03: #5c5855; 8 | --base04: #807d7c; 9 | --base05: #a5a2a2; 10 | --base06: #d6d5d4; 11 | --base07: #f7f7f7; 12 | --base08: #db2d20; 13 | --base09: #e8bbd0; 14 | --base0A: #fded02; 15 | --base0B: #01a252; 16 | --base0C: #b5e4f4; 17 | --base0D: #01a0e4; 18 | --base0E: #a16a94; 19 | --base0F: #cdab53; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-apathy.css: -------------------------------------------------------------------------------- 1 | /* Apathy by Jannik Siebert (https://github.com/janniks) */ 2 | 3 | :root { 4 | --base00: #031A16; 5 | --base01: #0B342D; 6 | --base02: #184E45; 7 | --base03: #2B685E; 8 | --base04: #5F9C92; 9 | --base05: #81B5AC; 10 | --base06: #A7CEC8; 11 | --base07: #D2E7E4; 12 | --base08: #3E9688; 13 | --base09: #3E7996; 14 | --base0A: #3E4C96; 15 | --base0B: #883E96; 16 | --base0C: #963E4C; 17 | --base0D: #96883E; 18 | --base0E: #4C963E; 19 | --base0F: #3E965B; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-apprentice.css: -------------------------------------------------------------------------------- 1 | /* Apprentice by romainl */ 2 | 3 | :root { 4 | --base00: #262626; 5 | --base01: #303030; 6 | --base02: #333333; 7 | --base03: #6C6C6C; 8 | --base04: #787878; 9 | --base05: #BCBCBC; 10 | --base06: #C9C9C9; 11 | --base07: #FFFFFF; 12 | --base08: #5F8787; 13 | --base09: #FF8700; 14 | --base0A: #5F8787; 15 | --base0B: #87AF87; 16 | --base0C: #5F875F; 17 | --base0D: #FFFFAF; 18 | --base0E: #87AFD7; 19 | --base0F: #5F87AF; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-ashes.css: -------------------------------------------------------------------------------- 1 | /* Ashes by Jannik Siebert (https://github.com/janniks) */ 2 | 3 | :root { 4 | --base00: #1C2023; 5 | --base01: #393F45; 6 | --base02: #565E65; 7 | --base03: #747C84; 8 | --base04: #ADB3BA; 9 | --base05: #C7CCD1; 10 | --base06: #DFE2E5; 11 | --base07: #F3F4F5; 12 | --base08: #C7AE95; 13 | --base09: #C7C795; 14 | --base0A: #AEC795; 15 | --base0B: #95C7AE; 16 | --base0C: #95AEC7; 17 | --base0D: #AE95C7; 18 | --base0E: #C795AE; 19 | --base0F: #C79595; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-cave-light.css: -------------------------------------------------------------------------------- 1 | /* Atelier Cave Light by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #efecf4; 5 | --base01: #e2dfe7; 6 | --base02: #8b8792; 7 | --base03: #7e7887; 8 | --base04: #655f6d; 9 | --base05: #585260; 10 | --base06: #26232a; 11 | --base07: #19171c; 12 | --base08: #be4678; 13 | --base09: #aa573c; 14 | --base0A: #a06e3b; 15 | --base0B: #2a9292; 16 | --base0C: #398bc6; 17 | --base0D: #576ddb; 18 | --base0E: #955ae7; 19 | --base0F: #bf40bf; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-cave.css: -------------------------------------------------------------------------------- 1 | /* Atelier Cave by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #19171c; 5 | --base01: #26232a; 6 | --base02: #585260; 7 | --base03: #655f6d; 8 | --base04: #7e7887; 9 | --base05: #8b8792; 10 | --base06: #e2dfe7; 11 | --base07: #efecf4; 12 | --base08: #be4678; 13 | --base09: #aa573c; 14 | --base0A: #a06e3b; 15 | --base0B: #2a9292; 16 | --base0C: #398bc6; 17 | --base0D: #576ddb; 18 | --base0E: #955ae7; 19 | --base0F: #bf40bf; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-dune-light.css: -------------------------------------------------------------------------------- 1 | /* Atelier Dune Light by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #fefbec; 5 | --base01: #e8e4cf; 6 | --base02: #a6a28c; 7 | --base03: #999580; 8 | --base04: #7d7a68; 9 | --base05: #6e6b5e; 10 | --base06: #292824; 11 | --base07: #20201d; 12 | --base08: #d73737; 13 | --base09: #b65611; 14 | --base0A: #ae9513; 15 | --base0B: #60ac39; 16 | --base0C: #1fad83; 17 | --base0D: #6684e1; 18 | --base0E: #b854d4; 19 | --base0F: #d43552; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-dune.css: -------------------------------------------------------------------------------- 1 | /* Atelier Dune by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #20201d; 5 | --base01: #292824; 6 | --base02: #6e6b5e; 7 | --base03: #7d7a68; 8 | --base04: #999580; 9 | --base05: #a6a28c; 10 | --base06: #e8e4cf; 11 | --base07: #fefbec; 12 | --base08: #d73737; 13 | --base09: #b65611; 14 | --base0A: #ae9513; 15 | --base0B: #60ac39; 16 | --base0C: #1fad83; 17 | --base0D: #6684e1; 18 | --base0E: #b854d4; 19 | --base0F: #d43552; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-estuary-light.css: -------------------------------------------------------------------------------- 1 | /* Atelier Estuary Light by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #f4f3ec; 5 | --base01: #e7e6df; 6 | --base02: #929181; 7 | --base03: #878573; 8 | --base04: #6c6b5a; 9 | --base05: #5f5e4e; 10 | --base06: #302f27; 11 | --base07: #22221b; 12 | --base08: #ba6236; 13 | --base09: #ae7313; 14 | --base0A: #a5980d; 15 | --base0B: #7d9726; 16 | --base0C: #5b9d48; 17 | --base0D: #36a166; 18 | --base0E: #5f9182; 19 | --base0F: #9d6c7c; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-estuary.css: -------------------------------------------------------------------------------- 1 | /* Atelier Estuary by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #22221b; 5 | --base01: #302f27; 6 | --base02: #5f5e4e; 7 | --base03: #6c6b5a; 8 | --base04: #878573; 9 | --base05: #929181; 10 | --base06: #e7e6df; 11 | --base07: #f4f3ec; 12 | --base08: #ba6236; 13 | --base09: #ae7313; 14 | --base0A: #a5980d; 15 | --base0B: #7d9726; 16 | --base0C: #5b9d48; 17 | --base0D: #36a166; 18 | --base0E: #5f9182; 19 | --base0F: #9d6c7c; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-forest-light.css: -------------------------------------------------------------------------------- 1 | /* Atelier Forest Light by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #f1efee; 5 | --base01: #e6e2e0; 6 | --base02: #a8a19f; 7 | --base03: #9c9491; 8 | --base04: #766e6b; 9 | --base05: #68615e; 10 | --base06: #2c2421; 11 | --base07: #1b1918; 12 | --base08: #f22c40; 13 | --base09: #df5320; 14 | --base0A: #c38418; 15 | --base0B: #7b9726; 16 | --base0C: #3d97b8; 17 | --base0D: #407ee7; 18 | --base0E: #6666ea; 19 | --base0F: #c33ff3; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-forest.css: -------------------------------------------------------------------------------- 1 | /* Atelier Forest by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #1b1918; 5 | --base01: #2c2421; 6 | --base02: #68615e; 7 | --base03: #766e6b; 8 | --base04: #9c9491; 9 | --base05: #a8a19f; 10 | --base06: #e6e2e0; 11 | --base07: #f1efee; 12 | --base08: #f22c40; 13 | --base09: #df5320; 14 | --base0A: #c38418; 15 | --base0B: #7b9726; 16 | --base0C: #3d97b8; 17 | --base0D: #407ee7; 18 | --base0E: #6666ea; 19 | --base0F: #c33ff3; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-heath-light.css: -------------------------------------------------------------------------------- 1 | /* Atelier Heath Light by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #f7f3f7; 5 | --base01: #d8cad8; 6 | --base02: #ab9bab; 7 | --base03: #9e8f9e; 8 | --base04: #776977; 9 | --base05: #695d69; 10 | --base06: #292329; 11 | --base07: #1b181b; 12 | --base08: #ca402b; 13 | --base09: #a65926; 14 | --base0A: #bb8a35; 15 | --base0B: #918b3b; 16 | --base0C: #159393; 17 | --base0D: #516aec; 18 | --base0E: #7b59c0; 19 | --base0F: #cc33cc; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-heath.css: -------------------------------------------------------------------------------- 1 | /* Atelier Heath by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #1b181b; 5 | --base01: #292329; 6 | --base02: #695d69; 7 | --base03: #776977; 8 | --base04: #9e8f9e; 9 | --base05: #ab9bab; 10 | --base06: #d8cad8; 11 | --base07: #f7f3f7; 12 | --base08: #ca402b; 13 | --base09: #a65926; 14 | --base0A: #bb8a35; 15 | --base0B: #918b3b; 16 | --base0C: #159393; 17 | --base0D: #516aec; 18 | --base0E: #7b59c0; 19 | --base0F: #cc33cc; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-lakeside-light.css: -------------------------------------------------------------------------------- 1 | /* Atelier Lakeside Light by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #ebf8ff; 5 | --base01: #c1e4f6; 6 | --base02: #7ea2b4; 7 | --base03: #7195a8; 8 | --base04: #5a7b8c; 9 | --base05: #516d7b; 10 | --base06: #1f292e; 11 | --base07: #161b1d; 12 | --base08: #d22d72; 13 | --base09: #935c25; 14 | --base0A: #8a8a0f; 15 | --base0B: #568c3b; 16 | --base0C: #2d8f6f; 17 | --base0D: #257fad; 18 | --base0E: #6b6bb8; 19 | --base0F: #b72dd2; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-lakeside.css: -------------------------------------------------------------------------------- 1 | /* Atelier Lakeside by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #161b1d; 5 | --base01: #1f292e; 6 | --base02: #516d7b; 7 | --base03: #5a7b8c; 8 | --base04: #7195a8; 9 | --base05: #7ea2b4; 10 | --base06: #c1e4f6; 11 | --base07: #ebf8ff; 12 | --base08: #d22d72; 13 | --base09: #935c25; 14 | --base0A: #8a8a0f; 15 | --base0B: #568c3b; 16 | --base0C: #2d8f6f; 17 | --base0D: #257fad; 18 | --base0E: #6b6bb8; 19 | --base0F: #b72dd2; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-plateau-light.css: -------------------------------------------------------------------------------- 1 | /* Atelier Plateau Light by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #f4ecec; 5 | --base01: #e7dfdf; 6 | --base02: #8a8585; 7 | --base03: #7e7777; 8 | --base04: #655d5d; 9 | --base05: #585050; 10 | --base06: #292424; 11 | --base07: #1b1818; 12 | --base08: #ca4949; 13 | --base09: #b45a3c; 14 | --base0A: #a06e3b; 15 | --base0B: #4b8b8b; 16 | --base0C: #5485b6; 17 | --base0D: #7272ca; 18 | --base0E: #8464c4; 19 | --base0F: #bd5187; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-plateau.css: -------------------------------------------------------------------------------- 1 | /* Atelier Plateau by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #1b1818; 5 | --base01: #292424; 6 | --base02: #585050; 7 | --base03: #655d5d; 8 | --base04: #7e7777; 9 | --base05: #8a8585; 10 | --base06: #e7dfdf; 11 | --base07: #f4ecec; 12 | --base08: #ca4949; 13 | --base09: #b45a3c; 14 | --base0A: #a06e3b; 15 | --base0B: #4b8b8b; 16 | --base0C: #5485b6; 17 | --base0D: #7272ca; 18 | --base0E: #8464c4; 19 | --base0F: #bd5187; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-savanna-light.css: -------------------------------------------------------------------------------- 1 | /* Atelier Savanna Light by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #ecf4ee; 5 | --base01: #dfe7e2; 6 | --base02: #87928a; 7 | --base03: #78877d; 8 | --base04: #5f6d64; 9 | --base05: #526057; 10 | --base06: #232a25; 11 | --base07: #171c19; 12 | --base08: #b16139; 13 | --base09: #9f713c; 14 | --base0A: #a07e3b; 15 | --base0B: #489963; 16 | --base0C: #1c9aa0; 17 | --base0D: #478c90; 18 | --base0E: #55859b; 19 | --base0F: #867469; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-savanna.css: -------------------------------------------------------------------------------- 1 | /* Atelier Savanna by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #171c19; 5 | --base01: #232a25; 6 | --base02: #526057; 7 | --base03: #5f6d64; 8 | --base04: #78877d; 9 | --base05: #87928a; 10 | --base06: #dfe7e2; 11 | --base07: #ecf4ee; 12 | --base08: #b16139; 13 | --base09: #9f713c; 14 | --base0A: #a07e3b; 15 | --base0B: #489963; 16 | --base0C: #1c9aa0; 17 | --base0D: #478c90; 18 | --base0E: #55859b; 19 | --base0F: #867469; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-seaside-light.css: -------------------------------------------------------------------------------- 1 | /* Atelier Seaside Light by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #f4fbf4; 5 | --base01: #cfe8cf; 6 | --base02: #8ca68c; 7 | --base03: #809980; 8 | --base04: #687d68; 9 | --base05: #5e6e5e; 10 | --base06: #242924; 11 | --base07: #131513; 12 | --base08: #e6193c; 13 | --base09: #87711d; 14 | --base0A: #98981b; 15 | --base0B: #29a329; 16 | --base0C: #1999b3; 17 | --base0D: #3d62f5; 18 | --base0E: #ad2bee; 19 | --base0F: #e619c3; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-seaside.css: -------------------------------------------------------------------------------- 1 | /* Atelier Seaside by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #131513; 5 | --base01: #242924; 6 | --base02: #5e6e5e; 7 | --base03: #687d68; 8 | --base04: #809980; 9 | --base05: #8ca68c; 10 | --base06: #cfe8cf; 11 | --base07: #f4fbf4; 12 | --base08: #e6193c; 13 | --base09: #87711d; 14 | --base0A: #98981b; 15 | --base0B: #29a329; 16 | --base0C: #1999b3; 17 | --base0D: #3d62f5; 18 | --base0E: #ad2bee; 19 | --base0F: #e619c3; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-sulphurpool-light.css: -------------------------------------------------------------------------------- 1 | /* Atelier Sulphurpool Light by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #f5f7ff; 5 | --base01: #dfe2f1; 6 | --base02: #979db4; 7 | --base03: #898ea4; 8 | --base04: #6b7394; 9 | --base05: #5e6687; 10 | --base06: #293256; 11 | --base07: #202746; 12 | --base08: #c94922; 13 | --base09: #c76b29; 14 | --base0A: #c08b30; 15 | --base0B: #ac9739; 16 | --base0C: #22a2c9; 17 | --base0D: #3d8fd1; 18 | --base0E: #6679cc; 19 | --base0F: #9c637a; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atelier-sulphurpool.css: -------------------------------------------------------------------------------- 1 | /* Atelier Sulphurpool by Bram de Haan (http://atelierbramdehaan.nl) */ 2 | 3 | :root { 4 | --base00: #202746; 5 | --base01: #293256; 6 | --base02: #5e6687; 7 | --base03: #6b7394; 8 | --base04: #898ea4; 9 | --base05: #979db4; 10 | --base06: #dfe2f1; 11 | --base07: #f5f7ff; 12 | --base08: #c94922; 13 | --base09: #c76b29; 14 | --base0A: #c08b30; 15 | --base0B: #ac9739; 16 | --base0C: #22a2c9; 17 | --base0D: #3d8fd1; 18 | --base0E: #6679cc; 19 | --base0F: #9c637a; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-atlas.css: -------------------------------------------------------------------------------- 1 | /* Atlas by Alex Lende (https://ajlende.com) */ 2 | 3 | :root { 4 | --base00: #002635; 5 | --base01: #00384d; 6 | --base02: #517F8D; 7 | --base03: #6C8B91; 8 | --base04: #869696; 9 | --base05: #a1a19a; 10 | --base06: #e6e6dc; 11 | --base07: #fafaf8; 12 | --base08: #ff5a67; 13 | --base09: #f08e48; 14 | --base0A: #ffcc1b; 15 | --base0B: #7fc06e; 16 | --base0C: #14747e; 17 | --base0D: #5dd7b9; 18 | --base0E: #9a70a4; 19 | --base0F: #c43060; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-bespin.css: -------------------------------------------------------------------------------- 1 | /* Bespin by Jan T. Sott */ 2 | 3 | :root { 4 | --base00: #28211c; 5 | --base01: #36312e; 6 | --base02: #5e5d5c; 7 | --base03: #666666; 8 | --base04: #797977; 9 | --base05: #8a8986; 10 | --base06: #9d9b97; 11 | --base07: #baae9e; 12 | --base08: #cf6a4c; 13 | --base09: #cf7d34; 14 | --base0A: #f9ee98; 15 | --base0B: #54be0d; 16 | --base0C: #afc4db; 17 | --base0D: #5ea6ea; 18 | --base0E: #9b859d; 19 | --base0F: #937121; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-black-metal-bathory.css: -------------------------------------------------------------------------------- 1 | /* Black Metal (Bathory) by metalelf0 (https://github.com/metalelf0) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #121212; 6 | --base02: #222222; 7 | --base03: #333333; 8 | --base04: #999999; 9 | --base05: #c1c1c1; 10 | --base06: #999999; 11 | --base07: #c1c1c1; 12 | --base08: #5f8787; 13 | --base09: #aaaaaa; 14 | --base0A: #e78a53; 15 | --base0B: #fbcb97; 16 | --base0C: #aaaaaa; 17 | --base0D: #888888; 18 | --base0E: #999999; 19 | --base0F: #444444; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-black-metal-burzum.css: -------------------------------------------------------------------------------- 1 | /* Black Metal (Burzum) by metalelf0 (https://github.com/metalelf0) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #121212; 6 | --base02: #222222; 7 | --base03: #333333; 8 | --base04: #999999; 9 | --base05: #c1c1c1; 10 | --base06: #999999; 11 | --base07: #c1c1c1; 12 | --base08: #5f8787; 13 | --base09: #aaaaaa; 14 | --base0A: #99bbaa; 15 | --base0B: #ddeecc; 16 | --base0C: #aaaaaa; 17 | --base0D: #888888; 18 | --base0E: #999999; 19 | --base0F: #444444; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-black-metal-dark-funeral.css: -------------------------------------------------------------------------------- 1 | /* Black Metal (Dark Funeral) by metalelf0 (https://github.com/metalelf0) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #121212; 6 | --base02: #222222; 7 | --base03: #333333; 8 | --base04: #999999; 9 | --base05: #c1c1c1; 10 | --base06: #999999; 11 | --base07: #c1c1c1; 12 | --base08: #5f8787; 13 | --base09: #aaaaaa; 14 | --base0A: #5f81a5; 15 | --base0B: #d0dfee; 16 | --base0C: #aaaaaa; 17 | --base0D: #888888; 18 | --base0E: #999999; 19 | --base0F: #444444; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-black-metal-gorgoroth.css: -------------------------------------------------------------------------------- 1 | /* Black Metal (Gorgoroth) by metalelf0 (https://github.com/metalelf0) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #121212; 6 | --base02: #222222; 7 | --base03: #333333; 8 | --base04: #999999; 9 | --base05: #c1c1c1; 10 | --base06: #999999; 11 | --base07: #c1c1c1; 12 | --base08: #5f8787; 13 | --base09: #aaaaaa; 14 | --base0A: #8c7f70; 15 | --base0B: #9b8d7f; 16 | --base0C: #aaaaaa; 17 | --base0D: #888888; 18 | --base0E: #999999; 19 | --base0F: #444444; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-black-metal-immortal.css: -------------------------------------------------------------------------------- 1 | /* Black Metal (Immortal) by metalelf0 (https://github.com/metalelf0) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #121212; 6 | --base02: #222222; 7 | --base03: #333333; 8 | --base04: #999999; 9 | --base05: #c1c1c1; 10 | --base06: #999999; 11 | --base07: #c1c1c1; 12 | --base08: #5f8787; 13 | --base09: #aaaaaa; 14 | --base0A: #556677; 15 | --base0B: #7799bb; 16 | --base0C: #aaaaaa; 17 | --base0D: #888888; 18 | --base0E: #999999; 19 | --base0F: #444444; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-black-metal-khold.css: -------------------------------------------------------------------------------- 1 | /* Black Metal (Khold) by metalelf0 (https://github.com/metalelf0) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #121212; 6 | --base02: #222222; 7 | --base03: #333333; 8 | --base04: #999999; 9 | --base05: #c1c1c1; 10 | --base06: #999999; 11 | --base07: #c1c1c1; 12 | --base08: #5f8787; 13 | --base09: #aaaaaa; 14 | --base0A: #974b46; 15 | --base0B: #eceee3; 16 | --base0C: #aaaaaa; 17 | --base0D: #888888; 18 | --base0E: #999999; 19 | --base0F: #444444; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-black-metal-marduk.css: -------------------------------------------------------------------------------- 1 | /* Black Metal (Marduk) by metalelf0 (https://github.com/metalelf0) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #121212; 6 | --base02: #222222; 7 | --base03: #333333; 8 | --base04: #999999; 9 | --base05: #c1c1c1; 10 | --base06: #999999; 11 | --base07: #c1c1c1; 12 | --base08: #5f8787; 13 | --base09: #aaaaaa; 14 | --base0A: #626b67; 15 | --base0B: #a5aaa7; 16 | --base0C: #aaaaaa; 17 | --base0D: #888888; 18 | --base0E: #999999; 19 | --base0F: #444444; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-black-metal-mayhem.css: -------------------------------------------------------------------------------- 1 | /* Black Metal (Mayhem) by metalelf0 (https://github.com/metalelf0) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #121212; 6 | --base02: #222222; 7 | --base03: #333333; 8 | --base04: #999999; 9 | --base05: #c1c1c1; 10 | --base06: #999999; 11 | --base07: #c1c1c1; 12 | --base08: #5f8787; 13 | --base09: #aaaaaa; 14 | --base0A: #eecc6c; 15 | --base0B: #f3ecd4; 16 | --base0C: #aaaaaa; 17 | --base0D: #888888; 18 | --base0E: #999999; 19 | --base0F: #444444; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-black-metal-nile.css: -------------------------------------------------------------------------------- 1 | /* Black Metal (Nile) by metalelf0 (https://github.com/metalelf0) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #121212; 6 | --base02: #222222; 7 | --base03: #333333; 8 | --base04: #999999; 9 | --base05: #c1c1c1; 10 | --base06: #999999; 11 | --base07: #c1c1c1; 12 | --base08: #5f8787; 13 | --base09: #aaaaaa; 14 | --base0A: #777755; 15 | --base0B: #aa9988; 16 | --base0C: #aaaaaa; 17 | --base0D: #888888; 18 | --base0E: #999999; 19 | --base0F: #444444; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-black-metal-venom.css: -------------------------------------------------------------------------------- 1 | /* Black Metal (Venom) by metalelf0 (https://github.com/metalelf0) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #121212; 6 | --base02: #222222; 7 | --base03: #333333; 8 | --base04: #999999; 9 | --base05: #c1c1c1; 10 | --base06: #999999; 11 | --base07: #c1c1c1; 12 | --base08: #5f8787; 13 | --base09: #aaaaaa; 14 | --base0A: #79241f; 15 | --base0B: #f8f7f2; 16 | --base0C: #aaaaaa; 17 | --base0D: #888888; 18 | --base0E: #999999; 19 | --base0F: #444444; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-black-metal.css: -------------------------------------------------------------------------------- 1 | /* Black Metal by metalelf0 (https://github.com/metalelf0) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #121212; 6 | --base02: #222222; 7 | --base03: #333333; 8 | --base04: #999999; 9 | --base05: #c1c1c1; 10 | --base06: #999999; 11 | --base07: #c1c1c1; 12 | --base08: #5f8787; 13 | --base09: #aaaaaa; 14 | --base0A: #a06666; 15 | --base0B: #dd9999; 16 | --base0C: #aaaaaa; 17 | --base0D: #888888; 18 | --base0E: #999999; 19 | --base0F: #444444; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-brewer.css: -------------------------------------------------------------------------------- 1 | /* Brewer by Timothée Poisot (http://github.com/tpoisot) */ 2 | 3 | :root { 4 | --base00: #0c0d0e; 5 | --base01: #2e2f30; 6 | --base02: #515253; 7 | --base03: #737475; 8 | --base04: #959697; 9 | --base05: #b7b8b9; 10 | --base06: #dadbdc; 11 | --base07: #fcfdfe; 12 | --base08: #e31a1c; 13 | --base09: #e6550d; 14 | --base0A: #dca060; 15 | --base0B: #31a354; 16 | --base0C: #80b1d3; 17 | --base0D: #3182bd; 18 | --base0E: #756bb1; 19 | --base0F: #b15928; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-bright.css: -------------------------------------------------------------------------------- 1 | /* Bright by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #303030; 6 | --base02: #505050; 7 | --base03: #b0b0b0; 8 | --base04: #d0d0d0; 9 | --base05: #e0e0e0; 10 | --base06: #f5f5f5; 11 | --base07: #ffffff; 12 | --base08: #fb0120; 13 | --base09: #fc6d24; 14 | --base0A: #fda331; 15 | --base0B: #a1c659; 16 | --base0C: #76c7b7; 17 | --base0D: #6fb3d2; 18 | --base0E: #d381c3; 19 | --base0F: #be643c; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-brogrammer.css: -------------------------------------------------------------------------------- 1 | /* Brogrammer by Vik Ramanujam (http://github.com/piggyslasher) */ 2 | 3 | :root { 4 | --base00: #1f1f1f; 5 | --base01: #f81118; 6 | --base02: #2dc55e; 7 | --base03: #ecba0f; 8 | --base04: #2a84d2; 9 | --base05: #4e5ab7; 10 | --base06: #1081d6; 11 | --base07: #d6dbe5; 12 | --base08: #d6dbe5; 13 | --base09: #de352e; 14 | --base0A: #1dd361; 15 | --base0B: #f3bd09; 16 | --base0C: #1081d6; 17 | --base0D: #5350b9; 18 | --base0E: #0f7ddb; 19 | --base0F: #ffffff; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-brushtrees-dark.css: -------------------------------------------------------------------------------- 1 | /* Brush Trees Dark by Abraham White */ 2 | 3 | :root { 4 | --base00: #485867; 5 | --base01: #5A6D7A; 6 | --base02: #6D828E; 7 | --base03: #8299A1; 8 | --base04: #98AFB5; 9 | --base05: #B0C5C8; 10 | --base06: #C9DBDC; 11 | --base07: #E3EFEF; 12 | --base08: #b38686; 13 | --base09: #d8bba2; 14 | --base0A: #aab386; 15 | --base0B: #87b386; 16 | --base0C: #86b3b3; 17 | --base0D: #868cb3; 18 | --base0E: #b386b2; 19 | --base0F: #b39f9f; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-brushtrees.css: -------------------------------------------------------------------------------- 1 | /* Brush Trees by Abraham White */ 2 | 3 | :root { 4 | --base00: #E3EFEF; 5 | --base01: #C9DBDC; 6 | --base02: #B0C5C8; 7 | --base03: #98AFB5; 8 | --base04: #8299A1; 9 | --base05: #6D828E; 10 | --base06: #5A6D7A; 11 | --base07: #485867; 12 | --base08: #b38686; 13 | --base09: #d8bba2; 14 | --base0A: #aab386; 15 | --base0B: #87b386; 16 | --base0C: #86b3b3; 17 | --base0D: #868cb3; 18 | --base0E: #b386b2; 19 | --base0F: #b39f9f; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-catppuccin.css: -------------------------------------------------------------------------------- 1 | /* Catppuccin by nbn22385 */ 2 | 3 | :root { 4 | --base00: #1E1E2E; 5 | --base01: #302D41; 6 | --base02: #302D41; 7 | --base03: #575268; 8 | --base04: #575268; 9 | --base05: #D9E0EE; 10 | --base06: #C9CBFF; 11 | --base07: #F5E0DC; 12 | --base08: #F28FAD; 13 | --base09: #E8A2AF; 14 | --base0A: #FAE3B0; 15 | --base0B: #ABE9B3; 16 | --base0C: #89DCEB; 17 | --base0D: #96CDFB; 18 | --base0E: #DDB6F2; 19 | --base0F: #DDB6F2; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-chalk.css: -------------------------------------------------------------------------------- 1 | /* Chalk by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #151515; 5 | --base01: #202020; 6 | --base02: #303030; 7 | --base03: #505050; 8 | --base04: #b0b0b0; 9 | --base05: #d0d0d0; 10 | --base06: #e0e0e0; 11 | --base07: #f5f5f5; 12 | --base08: #fb9fb1; 13 | --base09: #eda987; 14 | --base0A: #ddb26f; 15 | --base0B: #acc267; 16 | --base0C: #12cfc0; 17 | --base0D: #6fc2ef; 18 | --base0E: #e1a3ee; 19 | --base0F: #deaf8f; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-circus.css: -------------------------------------------------------------------------------- 1 | /* Circus by Stephan Boyer (https://github.com/stepchowfun) and Esther Wang (https://github.com/ewang12) */ 2 | 3 | :root { 4 | --base00: #191919; 5 | --base01: #202020; 6 | --base02: #303030; 7 | --base03: #5f5a60; 8 | --base04: #505050; 9 | --base05: #a7a7a7; 10 | --base06: #808080; 11 | --base07: #ffffff; 12 | --base08: #dc657d; 13 | --base09: #4bb1a7; 14 | --base0A: #c3ba63; 15 | --base0B: #84b97c; 16 | --base0C: #4bb1a7; 17 | --base0D: #639ee4; 18 | --base0E: #b888e2; 19 | --base0F: #b888e2; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-classic-dark.css: -------------------------------------------------------------------------------- 1 | /* Classic Dark by Jason Heeris (http://heeris.id.au) */ 2 | 3 | :root { 4 | --base00: #151515; 5 | --base01: #202020; 6 | --base02: #303030; 7 | --base03: #505050; 8 | --base04: #B0B0B0; 9 | --base05: #D0D0D0; 10 | --base06: #E0E0E0; 11 | --base07: #F5F5F5; 12 | --base08: #AC4142; 13 | --base09: #D28445; 14 | --base0A: #F4BF75; 15 | --base0B: #90A959; 16 | --base0C: #75B5AA; 17 | --base0D: #6A9FB5; 18 | --base0E: #AA759F; 19 | --base0F: #8F5536; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-classic-light.css: -------------------------------------------------------------------------------- 1 | /* Classic Light by Jason Heeris (http://heeris.id.au) */ 2 | 3 | :root { 4 | --base00: #F5F5F5; 5 | --base01: #E0E0E0; 6 | --base02: #D0D0D0; 7 | --base03: #B0B0B0; 8 | --base04: #505050; 9 | --base05: #303030; 10 | --base06: #202020; 11 | --base07: #151515; 12 | --base08: #AC4142; 13 | --base09: #D28445; 14 | --base0A: #F4BF75; 15 | --base0B: #90A959; 16 | --base0C: #75B5AA; 17 | --base0D: #6A9FB5; 18 | --base0E: #AA759F; 19 | --base0F: #8F5536; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-codeschool.css: -------------------------------------------------------------------------------- 1 | /* Codeschool by blockloop */ 2 | 3 | :root { 4 | --base00: #232c31; 5 | --base01: #1c3657; 6 | --base02: #2a343a; 7 | --base03: #3f4944; 8 | --base04: #84898c; 9 | --base05: #9ea7a6; 10 | --base06: #a7cfa3; 11 | --base07: #b5d8f6; 12 | --base08: #2a5491; 13 | --base09: #43820d; 14 | --base0A: #a03b1e; 15 | --base0B: #237986; 16 | --base0C: #b02f30; 17 | --base0D: #484d79; 18 | --base0E: #c59820; 19 | --base0F: #c98344; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-colors.css: -------------------------------------------------------------------------------- 1 | /* Colors by mrmrs (http://clrs.cc) */ 2 | 3 | :root { 4 | --base00: #111111; 5 | --base01: #333333; 6 | --base02: #555555; 7 | --base03: #777777; 8 | --base04: #999999; 9 | --base05: #bbbbbb; 10 | --base06: #dddddd; 11 | --base07: #ffffff; 12 | --base08: #ff4136; 13 | --base09: #ff851b; 14 | --base0A: #ffdc00; 15 | --base0B: #2ecc40; 16 | --base0C: #7fdbff; 17 | --base0D: #0074d9; 18 | --base0E: #b10dc9; 19 | --base0F: #85144b; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-cupcake.css: -------------------------------------------------------------------------------- 1 | /* Cupcake by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #fbf1f2; 5 | --base01: #f2f1f4; 6 | --base02: #d8d5dd; 7 | --base03: #bfb9c6; 8 | --base04: #a59daf; 9 | --base05: #8b8198; 10 | --base06: #72677E; 11 | --base07: #585062; 12 | --base08: #D57E85; 13 | --base09: #EBB790; 14 | --base0A: #DCB16C; 15 | --base0B: #A3B367; 16 | --base0C: #69A9A7; 17 | --base0D: #7297B9; 18 | --base0E: #BB99B4; 19 | --base0F: #BAA58C; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-cupertino.css: -------------------------------------------------------------------------------- 1 | /* Cupertino by Defman21 */ 2 | 3 | :root { 4 | --base00: #ffffff; 5 | --base01: #c0c0c0; 6 | --base02: #c0c0c0; 7 | --base03: #808080; 8 | --base04: #808080; 9 | --base05: #404040; 10 | --base06: #404040; 11 | --base07: #5e5e5e; 12 | --base08: #c41a15; 13 | --base09: #eb8500; 14 | --base0A: #826b28; 15 | --base0B: #007400; 16 | --base0C: #318495; 17 | --base0D: #0000ff; 18 | --base0E: #a90d91; 19 | --base0F: #826b28; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-danqing.css: -------------------------------------------------------------------------------- 1 | /* DanQing by Wenhan Zhu (Cosmos) (zhuwenhan950913@gmail.com) */ 2 | 3 | :root { 4 | --base00: #2d302f; 5 | --base01: #434846; 6 | --base02: #5a605d; 7 | --base03: #9da8a3; 8 | --base04: #cad8d2; 9 | --base05: #e0f0eF; 10 | --base06: #ecf6f2; 11 | --base07: #fcfefd; 12 | --base08: #F9906F; 13 | --base09: #B38A61; 14 | --base0A: #F0C239; 15 | --base0B: #8AB361; 16 | --base0C: #30DFF3; 17 | --base0D: #B0A4E3; 18 | --base0E: #CCA4E3; 19 | --base0F: #CA6924; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-darcula.css: -------------------------------------------------------------------------------- 1 | /* Darcula by jetbrains */ 2 | 3 | :root { 4 | --base00: #2b2b2b; 5 | --base01: #323232; 6 | --base02: #323232; 7 | --base03: #606366; 8 | --base04: #a4a3a3; 9 | --base05: #a9b7c6; 10 | --base06: #ffc66d; 11 | --base07: #ffffff; 12 | --base08: #4eade5; 13 | --base09: #689757; 14 | --base0A: #bbb529; 15 | --base0B: #6a8759; 16 | --base0C: #629755; 17 | --base0D: #9876aa; 18 | --base0E: #cc7832; 19 | --base0F: #808080; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-darkmoss.css: -------------------------------------------------------------------------------- 1 | /* darkmoss by Gabriel Avanzi (https://github.com/avanzzzi) */ 2 | 3 | :root { 4 | --base00: #171e1f; 5 | --base01: #252c2d; 6 | --base02: #373c3d; 7 | --base03: #555e5f; 8 | --base04: #818f80; 9 | --base05: #c7c7a5; 10 | --base06: #e3e3c8; 11 | --base07: #e1eaef; 12 | --base08: #ff4658; 13 | --base09: #e6db74; 14 | --base0A: #fdb11f; 15 | --base0B: #499180; 16 | --base0C: #66d9ef; 17 | --base0D: #498091; 18 | --base0E: #9bc0c8; 19 | --base0F: #d27b53; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-darktooth.css: -------------------------------------------------------------------------------- 1 | /* Darktooth by Jason Milkins (https://github.com/jasonm23) */ 2 | 3 | :root { 4 | --base00: #1D2021; 5 | --base01: #32302F; 6 | --base02: #504945; 7 | --base03: #665C54; 8 | --base04: #928374; 9 | --base05: #A89984; 10 | --base06: #D5C4A1; 11 | --base07: #FDF4C1; 12 | --base08: #FB543F; 13 | --base09: #FE8625; 14 | --base0A: #FAC03B; 15 | --base0B: #95C085; 16 | --base0C: #8BA59B; 17 | --base0D: #0D6678; 18 | --base0E: #8F4673; 19 | --base0F: #A87322; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-darkviolet.css: -------------------------------------------------------------------------------- 1 | /* Dark Violet by ruler501 (https://github.com/ruler501/base16-darkviolet) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #231a40; 6 | --base02: #432d59; 7 | --base03: #593380; 8 | --base04: #00ff00; 9 | --base05: #b08ae6; 10 | --base06: #9045e6; 11 | --base07: #a366ff; 12 | --base08: #a82ee6; 13 | --base09: #bb66cc; 14 | --base0A: #f29df2; 15 | --base0B: #4595e6; 16 | --base0C: #40dfff; 17 | --base0D: #4136d9; 18 | --base0E: #7e5ce6; 19 | --base0F: #a886bf; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-decaf.css: -------------------------------------------------------------------------------- 1 | /* Decaf by Alex Mirrington (https://github.com/alexmirrington) */ 2 | 3 | :root { 4 | --base00: #2d2d2d; 5 | --base01: #393939; 6 | --base02: #515151; 7 | --base03: #777777; 8 | --base04: #b4b7b4; 9 | --base05: #cccccc; 10 | --base06: #e0e0e0; 11 | --base07: #ffffff; 12 | --base08: #ff7f7b; 13 | --base09: #ffbf70; 14 | --base0A: #ffd67c; 15 | --base0B: #beda78; 16 | --base0C: #bed6ff; 17 | --base0D: #90bee1; 18 | --base0E: #efb3f7; 19 | --base0F: #ff93b3; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-default-dark.css: -------------------------------------------------------------------------------- 1 | /* Default Dark by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #181818; 5 | --base01: #282828; 6 | --base02: #383838; 7 | --base03: #585858; 8 | --base04: #b8b8b8; 9 | --base05: #d8d8d8; 10 | --base06: #e8e8e8; 11 | --base07: #f8f8f8; 12 | --base08: #ab4642; 13 | --base09: #dc9656; 14 | --base0A: #f7ca88; 15 | --base0B: #a1b56c; 16 | --base0C: #86c1b9; 17 | --base0D: #7cafc2; 18 | --base0E: #ba8baf; 19 | --base0F: #a16946; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-default-light.css: -------------------------------------------------------------------------------- 1 | /* Default Light by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #f8f8f8; 5 | --base01: #e8e8e8; 6 | --base02: #d8d8d8; 7 | --base03: #b8b8b8; 8 | --base04: #585858; 9 | --base05: #383838; 10 | --base06: #282828; 11 | --base07: #181818; 12 | --base08: #ab4642; 13 | --base09: #dc9656; 14 | --base0A: #f7ca88; 15 | --base0B: #a1b56c; 16 | --base0C: #86c1b9; 17 | --base0D: #7cafc2; 18 | --base0E: #ba8baf; 19 | --base0F: #a16946; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-dirtysea.css: -------------------------------------------------------------------------------- 1 | /* dirtysea by Kahlil (Kal) Hodgson */ 2 | 3 | :root { 4 | --base00: #e0e0e0; 5 | --base01: #d0dad0; 6 | --base02: #d0d0d0; 7 | --base03: #707070; 8 | --base04: #202020; 9 | --base05: #000000; 10 | --base06: #f8f8f8; 11 | --base07: #c4d9c4; 12 | --base08: #840000; 13 | --base09: #006565; 14 | --base0A: #755B00; 15 | --base0B: #730073; 16 | --base0C: #755B00; 17 | --base0D: #007300; 18 | --base0E: #000090; 19 | --base0F: #755B00; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-dracula.css: -------------------------------------------------------------------------------- 1 | /* Dracula by Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula) */ 2 | 3 | :root { 4 | --base00: #282936; 5 | --base01: #3a3c4e; 6 | --base02: #4d4f68; 7 | --base03: #626483; 8 | --base04: #62d6e8; 9 | --base05: #e9e9f4; 10 | --base06: #f1f2f8; 11 | --base07: #f7f7fb; 12 | --base08: #ea51b2; 13 | --base09: #b45bcf; 14 | --base0A: #00f769; 15 | --base0B: #ebff87; 16 | --base0C: #a1efe4; 17 | --base0D: #62d6e8; 18 | --base0E: #b45bcf; 19 | --base0F: #00f769; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-edge-dark.css: -------------------------------------------------------------------------------- 1 | /* Edge Dark by cjayross (https://github.com/cjayross) */ 2 | 3 | :root { 4 | --base00: #262729; 5 | --base01: #88909f; 6 | --base02: #b7bec9; 7 | --base03: #3e4249; 8 | --base04: #73b3e7; 9 | --base05: #b7bec9; 10 | --base06: #d390e7; 11 | --base07: #3e4249; 12 | --base08: #e77171; 13 | --base09: #e77171; 14 | --base0A: #dbb774; 15 | --base0B: #a1bf78; 16 | --base0C: #5ebaa5; 17 | --base0D: #73b3e7; 18 | --base0E: #d390e7; 19 | --base0F: #5ebaa5; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-edge-light.css: -------------------------------------------------------------------------------- 1 | /* Edge Light by cjayross (https://github.com/cjayross) */ 2 | 3 | :root { 4 | --base00: #fafafa; 5 | --base01: #7c9f4b; 6 | --base02: #d69822; 7 | --base03: #5e646f; 8 | --base04: #6587bf; 9 | --base05: #5e646f; 10 | --base06: #b870ce; 11 | --base07: #5e646f; 12 | --base08: #db7070; 13 | --base09: #db7070; 14 | --base0A: #d69822; 15 | --base0B: #7c9f4b; 16 | --base0C: #509c93; 17 | --base0D: #6587bf; 18 | --base0E: #b870ce; 19 | --base0F: #509c93; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-eighties.css: -------------------------------------------------------------------------------- 1 | /* Eighties by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #2d2d2d; 5 | --base01: #393939; 6 | --base02: #515151; 7 | --base03: #747369; 8 | --base04: #a09f93; 9 | --base05: #d3d0c8; 10 | --base06: #e8e6df; 11 | --base07: #f2f0ec; 12 | --base08: #f2777a; 13 | --base09: #f99157; 14 | --base0A: #ffcc66; 15 | --base0B: #99cc99; 16 | --base0C: #66cccc; 17 | --base0D: #6699cc; 18 | --base0E: #cc99cc; 19 | --base0F: #d27b53; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-embers.css: -------------------------------------------------------------------------------- 1 | /* Embers by Jannik Siebert (https://github.com/janniks) */ 2 | 3 | :root { 4 | --base00: #16130F; 5 | --base01: #2C2620; 6 | --base02: #433B32; 7 | --base03: #5A5047; 8 | --base04: #8A8075; 9 | --base05: #A39A90; 10 | --base06: #BEB6AE; 11 | --base07: #DBD6D1; 12 | --base08: #826D57; 13 | --base09: #828257; 14 | --base0A: #6D8257; 15 | --base0B: #57826D; 16 | --base0C: #576D82; 17 | --base0D: #6D5782; 18 | --base0E: #82576D; 19 | --base0F: #825757; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-equilibrium-dark.css: -------------------------------------------------------------------------------- 1 | /* Equilibrium Dark by Carlo Abelli */ 2 | 3 | :root { 4 | --base00: #0c1118; 5 | --base01: #181c22; 6 | --base02: #22262d; 7 | --base03: #7b776e; 8 | --base04: #949088; 9 | --base05: #afaba2; 10 | --base06: #cac6bd; 11 | --base07: #e7e2d9; 12 | --base08: #f04339; 13 | --base09: #df5923; 14 | --base0A: #bb8801; 15 | --base0B: #7f8b00; 16 | --base0C: #00948b; 17 | --base0D: #008dd1; 18 | --base0E: #6a7fd2; 19 | --base0F: #e3488e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-equilibrium-gray-dark.css: -------------------------------------------------------------------------------- 1 | /* Equilibrium Gray Dark by Carlo Abelli */ 2 | 3 | :root { 4 | --base00: #111111; 5 | --base01: #1b1b1b; 6 | --base02: #262626; 7 | --base03: #777777; 8 | --base04: #919191; 9 | --base05: #ababab; 10 | --base06: #c6c6c6; 11 | --base07: #e2e2e2; 12 | --base08: #f04339; 13 | --base09: #df5923; 14 | --base0A: #bb8801; 15 | --base0B: #7f8b00; 16 | --base0C: #00948b; 17 | --base0D: #008dd1; 18 | --base0E: #6a7fd2; 19 | --base0F: #e3488e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-equilibrium-gray-light.css: -------------------------------------------------------------------------------- 1 | /* Equilibrium Gray Light by Carlo Abelli */ 2 | 3 | :root { 4 | --base00: #f1f1f1; 5 | --base01: #e2e2e2; 6 | --base02: #d4d4d4; 7 | --base03: #777777; 8 | --base04: #5e5e5e; 9 | --base05: #474747; 10 | --base06: #303030; 11 | --base07: #1b1b1b; 12 | --base08: #d02023; 13 | --base09: #bf3e05; 14 | --base0A: #9d6f00; 15 | --base0B: #637200; 16 | --base0C: #007a72; 17 | --base0D: #0073b5; 18 | --base0E: #4e66b6; 19 | --base0F: #c42775; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-equilibrium-light.css: -------------------------------------------------------------------------------- 1 | /* Equilibrium Light by Carlo Abelli */ 2 | 3 | :root { 4 | --base00: #f5f0e7; 5 | --base01: #e7e2d9; 6 | --base02: #d8d4cb; 7 | --base03: #73777f; 8 | --base04: #5a5f66; 9 | --base05: #43474e; 10 | --base06: #2c3138; 11 | --base07: #181c22; 12 | --base08: #d02023; 13 | --base09: #bf3e05; 14 | --base0A: #9d6f00; 15 | --base0B: #637200; 16 | --base0C: #007a72; 17 | --base0D: #0073b5; 18 | --base0E: #4e66b6; 19 | --base0F: #c42775; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-espresso.css: -------------------------------------------------------------------------------- 1 | /* Espresso by Unknown. Maintained by Alex Mirrington (https://github.com/alexmirrington) */ 2 | 3 | :root { 4 | --base00: #2d2d2d; 5 | --base01: #393939; 6 | --base02: #515151; 7 | --base03: #777777; 8 | --base04: #b4b7b4; 9 | --base05: #cccccc; 10 | --base06: #e0e0e0; 11 | --base07: #ffffff; 12 | --base08: #d25252; 13 | --base09: #f9a959; 14 | --base0A: #ffc66d; 15 | --base0B: #a5c261; 16 | --base0C: #bed6ff; 17 | --base0D: #6c99bb; 18 | --base0E: #d197d9; 19 | --base0F: #f97394; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-eva-dim.css: -------------------------------------------------------------------------------- 1 | /* Eva Dim by kjakapat (https://github.com/kjakapat) */ 2 | 3 | :root { 4 | --base00: #2a3b4d; 5 | --base01: #3d566f; 6 | --base02: #4b6988; 7 | --base03: #55799c; 8 | --base04: #7e90a3; 9 | --base05: #9fa2a6; 10 | --base06: #d6d7d9; 11 | --base07: #ffffff; 12 | --base08: #c4676c; 13 | --base09: #ff9966; 14 | --base0A: #cfd05d; 15 | --base0B: #5de561; 16 | --base0C: #4b8f77; 17 | --base0D: #1ae1dc; 18 | --base0E: #9c6cd3; 19 | --base0F: #bb64a9; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-eva.css: -------------------------------------------------------------------------------- 1 | /* Eva by kjakapat (https://github.com/kjakapat) */ 2 | 3 | :root { 4 | --base00: #2a3b4d; 5 | --base01: #3d566f; 6 | --base02: #4b6988; 7 | --base03: #55799c; 8 | --base04: #7e90a3; 9 | --base05: #9fa2a6; 10 | --base06: #d6d7d9; 11 | --base07: #ffffff; 12 | --base08: #c4676c; 13 | --base09: #ff9966; 14 | --base0A: #ffff66; 15 | --base0B: #66ff66; 16 | --base0C: #4b8f77; 17 | --base0D: #15f4ee; 18 | --base0E: #9c6cd3; 19 | --base0F: #bb64a9; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-flat.css: -------------------------------------------------------------------------------- 1 | /* Flat by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #2C3E50; 5 | --base01: #34495E; 6 | --base02: #7F8C8D; 7 | --base03: #95A5A6; 8 | --base04: #BDC3C7; 9 | --base05: #e0e0e0; 10 | --base06: #f5f5f5; 11 | --base07: #ECF0F1; 12 | --base08: #E74C3C; 13 | --base09: #E67E22; 14 | --base0A: #F1C40F; 15 | --base0B: #2ECC71; 16 | --base0C: #1ABC9C; 17 | --base0D: #3498DB; 18 | --base0E: #9B59B6; 19 | --base0F: #be643c; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-framer.css: -------------------------------------------------------------------------------- 1 | /* Framer by Framer (Maintained by Jesse Hoyos) */ 2 | 3 | :root { 4 | --base00: #181818; 5 | --base01: #151515; 6 | --base02: #464646; 7 | --base03: #747474; 8 | --base04: #B9B9B9; 9 | --base05: #D0D0D0; 10 | --base06: #E8E8E8; 11 | --base07: #EEEEEE; 12 | --base08: #FD886B; 13 | --base09: #FC4769; 14 | --base0A: #FECB6E; 15 | --base0B: #32CCDC; 16 | --base0C: #ACDDFD; 17 | --base0D: #20BCFC; 18 | --base0E: #BA8CFC; 19 | --base0F: #B15F4A; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-fruit-soda.css: -------------------------------------------------------------------------------- 1 | /* Fruit Soda by jozip */ 2 | 3 | :root { 4 | --base00: #f1ecf1; 5 | --base01: #e0dee0; 6 | --base02: #d8d5d5; 7 | --base03: #b5b4b6; 8 | --base04: #979598; 9 | --base05: #515151; 10 | --base06: #474545; 11 | --base07: #2d2c2c; 12 | --base08: #fe3e31; 13 | --base09: #fe6d08; 14 | --base0A: #f7e203; 15 | --base0B: #47f74c; 16 | --base0C: #0f9cfd; 17 | --base0D: #2931df; 18 | --base0E: #611fce; 19 | --base0F: #b16f40; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-gigavolt.css: -------------------------------------------------------------------------------- 1 | /* Gigavolt by Aidan Swope (http://github.com/Whillikers) */ 2 | 3 | :root { 4 | --base00: #202126; 5 | --base01: #2d303d; 6 | --base02: #5a576e; 7 | --base03: #a1d2e6; 8 | --base04: #cad3ff; 9 | --base05: #e9e7e1; 10 | --base06: #eff0f9; 11 | --base07: #f2fbff; 12 | --base08: #ff661a; 13 | --base09: #19f988; 14 | --base0A: #ffdc2d; 15 | --base0B: #f2e6a9; 16 | --base0C: #fb6acb; 17 | --base0D: #40bfff; 18 | --base0E: #ae94f9; 19 | --base0F: #6187ff; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-github.css: -------------------------------------------------------------------------------- 1 | /* Github by Defman21 */ 2 | 3 | :root { 4 | --base00: #ffffff; 5 | --base01: #f5f5f5; 6 | --base02: #c8c8fa; 7 | --base03: #969896; 8 | --base04: #e8e8e8; 9 | --base05: #333333; 10 | --base06: #ffffff; 11 | --base07: #ffffff; 12 | --base08: #ed6a43; 13 | --base09: #0086b3; 14 | --base0A: #795da3; 15 | --base0B: #183691; 16 | --base0C: #183691; 17 | --base0D: #795da3; 18 | --base0E: #a71d5d; 19 | --base0F: #333333; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-google-dark.css: -------------------------------------------------------------------------------- 1 | /* Google Dark by Seth Wright (http://sethawright.com) */ 2 | 3 | :root { 4 | --base00: #1d1f21; 5 | --base01: #282a2e; 6 | --base02: #373b41; 7 | --base03: #969896; 8 | --base04: #b4b7b4; 9 | --base05: #c5c8c6; 10 | --base06: #e0e0e0; 11 | --base07: #ffffff; 12 | --base08: #CC342B; 13 | --base09: #F96A38; 14 | --base0A: #FBA922; 15 | --base0B: #198844; 16 | --base0C: #3971ED; 17 | --base0D: #3971ED; 18 | --base0E: #A36AC7; 19 | --base0F: #3971ED; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-google-light.css: -------------------------------------------------------------------------------- 1 | /* Google Light by Seth Wright (http://sethawright.com) */ 2 | 3 | :root { 4 | --base00: #ffffff; 5 | --base01: #e0e0e0; 6 | --base02: #c5c8c6; 7 | --base03: #b4b7b4; 8 | --base04: #969896; 9 | --base05: #373b41; 10 | --base06: #282a2e; 11 | --base07: #1d1f21; 12 | --base08: #CC342B; 13 | --base09: #F96A38; 14 | --base0A: #FBA922; 15 | --base0B: #198844; 16 | --base0C: #3971ED; 17 | --base0D: #3971ED; 18 | --base0E: #A36AC7; 19 | --base0F: #3971ED; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-grayscale-dark.css: -------------------------------------------------------------------------------- 1 | /* Grayscale Dark by Alexandre Gavioli (https://github.com/Alexx2/) */ 2 | 3 | :root { 4 | --base00: #101010; 5 | --base01: #252525; 6 | --base02: #464646; 7 | --base03: #525252; 8 | --base04: #ababab; 9 | --base05: #b9b9b9; 10 | --base06: #e3e3e3; 11 | --base07: #f7f7f7; 12 | --base08: #7c7c7c; 13 | --base09: #999999; 14 | --base0A: #a0a0a0; 15 | --base0B: #8e8e8e; 16 | --base0C: #868686; 17 | --base0D: #686868; 18 | --base0E: #747474; 19 | --base0F: #5e5e5e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-grayscale-light.css: -------------------------------------------------------------------------------- 1 | /* Grayscale Light by Alexandre Gavioli (https://github.com/Alexx2/) */ 2 | 3 | :root { 4 | --base00: #f7f7f7; 5 | --base01: #e3e3e3; 6 | --base02: #b9b9b9; 7 | --base03: #ababab; 8 | --base04: #525252; 9 | --base05: #464646; 10 | --base06: #252525; 11 | --base07: #101010; 12 | --base08: #7c7c7c; 13 | --base09: #999999; 14 | --base0A: #a0a0a0; 15 | --base0B: #8e8e8e; 16 | --base0C: #868686; 17 | --base0D: #686868; 18 | --base0E: #747474; 19 | --base0F: #5e5e5e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-green-screen.css: -------------------------------------------------------------------------------- 1 | /* Green Screen by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #001100; 5 | --base01: #003300; 6 | --base02: #005500; 7 | --base03: #007700; 8 | --base04: #009900; 9 | --base05: #00bb00; 10 | --base06: #00dd00; 11 | --base07: #00ff00; 12 | --base08: #007700; 13 | --base09: #009900; 14 | --base0A: #007700; 15 | --base0B: #00bb00; 16 | --base0C: #005500; 17 | --base0D: #009900; 18 | --base0E: #00bb00; 19 | --base0F: #005500; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-greenscreen.css: -------------------------------------------------------------------------------- 1 | /* Green Screen by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #001100; 5 | --base01: #003300; 6 | --base02: #005500; 7 | --base03: #007700; 8 | --base04: #009900; 9 | --base05: #00bb00; 10 | --base06: #00dd00; 11 | --base07: #00ff00; 12 | --base08: #007700; 13 | --base09: #009900; 14 | --base0A: #007700; 15 | --base0B: #00bb00; 16 | --base0C: #005500; 17 | --base0D: #009900; 18 | --base0E: #00bb00; 19 | --base0F: #005500; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-gruvbox-dark-hard.css: -------------------------------------------------------------------------------- 1 | /* Gruvbox dark, hard by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ 2 | 3 | :root { 4 | --base00: #1d2021; 5 | --base01: #3c3836; 6 | --base02: #504945; 7 | --base03: #665c54; 8 | --base04: #bdae93; 9 | --base05: #d5c4a1; 10 | --base06: #ebdbb2; 11 | --base07: #fbf1c7; 12 | --base08: #fb4934; 13 | --base09: #fe8019; 14 | --base0A: #fabd2f; 15 | --base0B: #b8bb26; 16 | --base0C: #8ec07c; 17 | --base0D: #83a598; 18 | --base0E: #d3869b; 19 | --base0F: #d65d0e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-gruvbox-dark-medium.css: -------------------------------------------------------------------------------- 1 | /* Gruvbox dark, medium by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ 2 | 3 | :root { 4 | --base00: #282828; 5 | --base01: #3c3836; 6 | --base02: #504945; 7 | --base03: #665c54; 8 | --base04: #bdae93; 9 | --base05: #d5c4a1; 10 | --base06: #ebdbb2; 11 | --base07: #fbf1c7; 12 | --base08: #fb4934; 13 | --base09: #fe8019; 14 | --base0A: #fabd2f; 15 | --base0B: #b8bb26; 16 | --base0C: #8ec07c; 17 | --base0D: #83a598; 18 | --base0E: #d3869b; 19 | --base0F: #d65d0e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-gruvbox-dark-pale.css: -------------------------------------------------------------------------------- 1 | /* Gruvbox dark, pale by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ 2 | 3 | :root { 4 | --base00: #262626; 5 | --base01: #3a3a3a; 6 | --base02: #4e4e4e; 7 | --base03: #8a8a8a; 8 | --base04: #949494; 9 | --base05: #dab997; 10 | --base06: #d5c4a1; 11 | --base07: #ebdbb2; 12 | --base08: #d75f5f; 13 | --base09: #ff8700; 14 | --base0A: #ffaf00; 15 | --base0B: #afaf00; 16 | --base0C: #85ad85; 17 | --base0D: #83adad; 18 | --base0E: #d485ad; 19 | --base0F: #d65d0e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-gruvbox-dark-soft.css: -------------------------------------------------------------------------------- 1 | /* Gruvbox dark, soft by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ 2 | 3 | :root { 4 | --base00: #32302f; 5 | --base01: #3c3836; 6 | --base02: #504945; 7 | --base03: #665c54; 8 | --base04: #bdae93; 9 | --base05: #d5c4a1; 10 | --base06: #ebdbb2; 11 | --base07: #fbf1c7; 12 | --base08: #fb4934; 13 | --base09: #fe8019; 14 | --base0A: #fabd2f; 15 | --base0B: #b8bb26; 16 | --base0C: #8ec07c; 17 | --base0D: #83a598; 18 | --base0E: #d3869b; 19 | --base0F: #d65d0e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-gruvbox-light-hard.css: -------------------------------------------------------------------------------- 1 | /* Gruvbox light, hard by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ 2 | 3 | :root { 4 | --base00: #f9f5d7; 5 | --base01: #ebdbb2; 6 | --base02: #d5c4a1; 7 | --base03: #bdae93; 8 | --base04: #665c54; 9 | --base05: #504945; 10 | --base06: #3c3836; 11 | --base07: #282828; 12 | --base08: #9d0006; 13 | --base09: #af3a03; 14 | --base0A: #b57614; 15 | --base0B: #79740e; 16 | --base0C: #427b58; 17 | --base0D: #076678; 18 | --base0E: #8f3f71; 19 | --base0F: #d65d0e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-gruvbox-light-medium.css: -------------------------------------------------------------------------------- 1 | /* Gruvbox light, medium by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ 2 | 3 | :root { 4 | --base00: #fbf1c7; 5 | --base01: #ebdbb2; 6 | --base02: #d5c4a1; 7 | --base03: #bdae93; 8 | --base04: #665c54; 9 | --base05: #504945; 10 | --base06: #3c3836; 11 | --base07: #282828; 12 | --base08: #9d0006; 13 | --base09: #af3a03; 14 | --base0A: #b57614; 15 | --base0B: #79740e; 16 | --base0C: #427b58; 17 | --base0D: #076678; 18 | --base0E: #8f3f71; 19 | --base0F: #d65d0e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-gruvbox-light-soft.css: -------------------------------------------------------------------------------- 1 | /* Gruvbox light, soft by Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) */ 2 | 3 | :root { 4 | --base00: #f2e5bc; 5 | --base01: #ebdbb2; 6 | --base02: #d5c4a1; 7 | --base03: #bdae93; 8 | --base04: #665c54; 9 | --base05: #504945; 10 | --base06: #3c3836; 11 | --base07: #282828; 12 | --base08: #9d0006; 13 | --base09: #af3a03; 14 | --base0A: #b57614; 15 | --base0B: #79740e; 16 | --base0C: #427b58; 17 | --base0D: #076678; 18 | --base0E: #8f3f71; 19 | --base0F: #d65d0e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-hardcore.css: -------------------------------------------------------------------------------- 1 | /* Hardcore by Chris Caller */ 2 | 3 | :root { 4 | --base00: #212121; 5 | --base01: #303030; 6 | --base02: #353535; 7 | --base03: #4A4A4A; 8 | --base04: #707070; 9 | --base05: #cdcdcd; 10 | --base06: #e5e5e5; 11 | --base07: #ffffff; 12 | --base08: #f92672; 13 | --base09: #fd971f; 14 | --base0A: #e6db74; 15 | --base0B: #a6e22e; 16 | --base0C: #708387; 17 | --base0D: #66d9ef; 18 | --base0E: #9e6ffe; 19 | --base0F: #e8b882; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-harmonic-dark.css: -------------------------------------------------------------------------------- 1 | /* Harmonic16 Dark by Jannik Siebert (https://github.com/janniks) */ 2 | 3 | :root { 4 | --base00: #0b1c2c; 5 | --base01: #223b54; 6 | --base02: #405c79; 7 | --base03: #627e99; 8 | --base04: #aabcce; 9 | --base05: #cbd6e2; 10 | --base06: #e5ebf1; 11 | --base07: #f7f9fb; 12 | --base08: #bf8b56; 13 | --base09: #bfbf56; 14 | --base0A: #8bbf56; 15 | --base0B: #56bf8b; 16 | --base0C: #568bbf; 17 | --base0D: #8b56bf; 18 | --base0E: #bf568b; 19 | --base0F: #bf5656; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-harmonic-light.css: -------------------------------------------------------------------------------- 1 | /* Harmonic16 Light by Jannik Siebert (https://github.com/janniks) */ 2 | 3 | :root { 4 | --base00: #f7f9fb; 5 | --base01: #e5ebf1; 6 | --base02: #cbd6e2; 7 | --base03: #aabcce; 8 | --base04: #627e99; 9 | --base05: #405c79; 10 | --base06: #223b54; 11 | --base07: #0b1c2c; 12 | --base08: #bf8b56; 13 | --base09: #bfbf56; 14 | --base0A: #8bbf56; 15 | --base0B: #56bf8b; 16 | --base0C: #568bbf; 17 | --base0D: #8b56bf; 18 | --base0E: #bf568b; 19 | --base0F: #bf5656; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-harmonic16-dark.css: -------------------------------------------------------------------------------- 1 | /* Harmonic16 Dark by Jannik Siebert (https://github.com/janniks) */ 2 | 3 | :root { 4 | --base00: #0b1c2c; 5 | --base01: #223b54; 6 | --base02: #405c79; 7 | --base03: #627e99; 8 | --base04: #aabcce; 9 | --base05: #cbd6e2; 10 | --base06: #e5ebf1; 11 | --base07: #f7f9fb; 12 | --base08: #bf8b56; 13 | --base09: #bfbf56; 14 | --base0A: #8bbf56; 15 | --base0B: #56bf8b; 16 | --base0C: #568bbf; 17 | --base0D: #8b56bf; 18 | --base0E: #bf568b; 19 | --base0F: #bf5656; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-harmonic16-light.css: -------------------------------------------------------------------------------- 1 | /* Harmonic16 Light by Jannik Siebert (https://github.com/janniks) */ 2 | 3 | :root { 4 | --base00: #f7f9fb; 5 | --base01: #e5ebf1; 6 | --base02: #cbd6e2; 7 | --base03: #aabcce; 8 | --base04: #627e99; 9 | --base05: #405c79; 10 | --base06: #223b54; 11 | --base07: #0b1c2c; 12 | --base08: #bf8b56; 13 | --base09: #bfbf56; 14 | --base0A: #8bbf56; 15 | --base0B: #56bf8b; 16 | --base0C: #568bbf; 17 | --base0D: #8b56bf; 18 | --base0E: #bf568b; 19 | --base0F: #bf5656; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-heetch-light.css: -------------------------------------------------------------------------------- 1 | /* Heetch Light by Geoffrey Teale (tealeg@gmail.com) */ 2 | 3 | :root { 4 | --base00: #feffff; 5 | --base01: #392551; 6 | --base02: #7b6d8b; 7 | --base03: #9c92a8; 8 | --base04: #ddd6e5; 9 | --base05: #5a496e; 10 | --base06: #470546; 11 | --base07: #190134; 12 | --base08: #27d9d5; 13 | --base09: #bdb6c5; 14 | --base0A: #5ba2b6; 15 | --base0B: #f80059; 16 | --base0C: #c33678; 17 | --base0D: #47f9f5; 18 | --base0E: #bd0152; 19 | --base0F: #dedae2; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-heetch.css: -------------------------------------------------------------------------------- 1 | /* Heetch Dark by Geoffrey Teale (tealeg@gmail.com) */ 2 | 3 | :root { 4 | --base00: #190134; 5 | --base01: #392551; 6 | --base02: #5A496E; 7 | --base03: #7B6D8B; 8 | --base04: #9C92A8; 9 | --base05: #BDB6C5; 10 | --base06: #DEDAE2; 11 | --base07: #FEFFFF; 12 | --base08: #27D9D5; 13 | --base09: #5BA2B6; 14 | --base0A: #8F6C97; 15 | --base0B: #C33678; 16 | --base0C: #F80059; 17 | --base0D: #BD0152; 18 | --base0E: #82034C; 19 | --base0F: #470546; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-helios.css: -------------------------------------------------------------------------------- 1 | /* Helios by Alex Meyer (https://github.com/reyemxela) */ 2 | 3 | :root { 4 | --base00: #1d2021; 5 | --base01: #383c3e; 6 | --base02: #53585b; 7 | --base03: #6f7579; 8 | --base04: #cdcdcd; 9 | --base05: #d5d5d5; 10 | --base06: #dddddd; 11 | --base07: #e5e5e5; 12 | --base08: #d72638; 13 | --base09: #eb8413; 14 | --base0A: #f19d1a; 15 | --base0B: #88b92d; 16 | --base0C: #1ba595; 17 | --base0D: #1e8bac; 18 | --base0E: #be4264; 19 | --base0F: #c85e0d; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-hopscotch.css: -------------------------------------------------------------------------------- 1 | /* Hopscotch by Jan T. Sott */ 2 | 3 | :root { 4 | --base00: #322931; 5 | --base01: #433b42; 6 | --base02: #5c545b; 7 | --base03: #797379; 8 | --base04: #989498; 9 | --base05: #b9b5b8; 10 | --base06: #d5d3d5; 11 | --base07: #ffffff; 12 | --base08: #dd464c; 13 | --base09: #fd8b19; 14 | --base0A: #fdcc59; 15 | --base0B: #8fc13e; 16 | --base0C: #149b93; 17 | --base0D: #1290bf; 18 | --base0E: #c85e7c; 19 | --base0F: #b33508; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-horizon-dark.css: -------------------------------------------------------------------------------- 1 | /* Horizon Dark by Michaël Ball (http://github.com/michael-ball/) */ 2 | 3 | :root { 4 | --base00: #1C1E26; 5 | --base01: #232530; 6 | --base02: #2E303E; 7 | --base03: #6F6F70; 8 | --base04: #9DA0A2; 9 | --base05: #CBCED0; 10 | --base06: #DCDFE4; 11 | --base07: #E3E6EE; 12 | --base08: #E93C58; 13 | --base09: #E58D7D; 14 | --base0A: #EFB993; 15 | --base0B: #EFAF8E; 16 | --base0C: #24A8B4; 17 | --base0D: #DF5273; 18 | --base0E: #B072D1; 19 | --base0F: #E4A382; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-horizon-light.css: -------------------------------------------------------------------------------- 1 | /* Horizon Light by Michaël Ball (http://github.com/michael-ball/) */ 2 | 3 | :root { 4 | --base00: #FDF0ED; 5 | --base01: #FADAD1; 6 | --base02: #F9CBBE; 7 | --base03: #BDB3B1; 8 | --base04: #948C8A; 9 | --base05: #403C3D; 10 | --base06: #302C2D; 11 | --base07: #201C1D; 12 | --base08: #F7939B; 13 | --base09: #F6661E; 14 | --base0A: #FBE0D9; 15 | --base0B: #94E1B0; 16 | --base0C: #DC3318; 17 | --base0D: #DA103F; 18 | --base0E: #1D8991; 19 | --base0F: #E58C92; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-horizon-terminal-dark.css: -------------------------------------------------------------------------------- 1 | /* Horizon Dark by Michaël Ball (http://github.com/michael-ball/) */ 2 | 3 | :root { 4 | --base00: #1C1E26; 5 | --base01: #232530; 6 | --base02: #2E303E; 7 | --base03: #6F6F70; 8 | --base04: #9DA0A2; 9 | --base05: #CBCED0; 10 | --base06: #DCDFE4; 11 | --base07: #E3E6EE; 12 | --base08: #E95678; 13 | --base09: #FAB795; 14 | --base0A: #FAC29A; 15 | --base0B: #29D398; 16 | --base0C: #59E1E3; 17 | --base0D: #26BBD9; 18 | --base0E: #EE64AC; 19 | --base0F: #F09383; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-horizon-terminal-light.css: -------------------------------------------------------------------------------- 1 | /* Horizon Light by Michaël Ball (http://github.com/michael-ball/) */ 2 | 3 | :root { 4 | --base00: #FDF0ED; 5 | --base01: #FADAD1; 6 | --base02: #F9CBBE; 7 | --base03: #BDB3B1; 8 | --base04: #948C8A; 9 | --base05: #403C3D; 10 | --base06: #302C2D; 11 | --base07: #201C1D; 12 | --base08: #E95678; 13 | --base09: #F9CEC3; 14 | --base0A: #FADAD1; 15 | --base0B: #29D398; 16 | --base0C: #59E1E3; 17 | --base0D: #26BBD9; 18 | --base0E: #EE64AC; 19 | --base0F: #F9CBBE; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-humanoid-dark.css: -------------------------------------------------------------------------------- 1 | /* Humanoid dark by Thomas (tasmo) Friese */ 2 | 3 | :root { 4 | --base00: #232629; 5 | --base01: #333b3d; 6 | --base02: #484e54; 7 | --base03: #60615d; 8 | --base04: #c0c0bd; 9 | --base05: #f8f8f2; 10 | --base06: #fcfcf6; 11 | --base07: #fcfcfc; 12 | --base08: #f11235; 13 | --base09: #ff9505; 14 | --base0A: #ffb627; 15 | --base0B: #02d849; 16 | --base0C: #0dd9d6; 17 | --base0D: #00a6fb; 18 | --base0E: #f15ee3; 19 | --base0F: #b27701; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-humanoid-light.css: -------------------------------------------------------------------------------- 1 | /* Humanoid light by Thomas (tasmo) Friese */ 2 | 3 | :root { 4 | --base00: #f8f8f2; 5 | --base01: #efefe9; 6 | --base02: #deded8; 7 | --base03: #c0c0bd; 8 | --base04: #60615d; 9 | --base05: #232629; 10 | --base06: #2f3337; 11 | --base07: #070708; 12 | --base08: #b0151a; 13 | --base09: #ff3d00; 14 | --base0A: #ffb627; 15 | --base0B: #388e3c; 16 | --base0C: #008e8e; 17 | --base0D: #0082c9; 18 | --base0E: #700f98; 19 | --base0F: #b27701; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-ia-dark.css: -------------------------------------------------------------------------------- 1 | /* iA Dark by iA Inc. (modified by aramisgithub) */ 2 | 3 | :root { 4 | --base00: #1a1a1a; 5 | --base01: #222222; 6 | --base02: #1d414d; 7 | --base03: #767676; 8 | --base04: #b8b8b8; 9 | --base05: #cccccc; 10 | --base06: #e8e8e8; 11 | --base07: #f8f8f8; 12 | --base08: #d88568; 13 | --base09: #d86868; 14 | --base0A: #b99353; 15 | --base0B: #83a471; 16 | --base0C: #7c9cae; 17 | --base0D: #8eccdd; 18 | --base0E: #b98eb2; 19 | --base0F: #8b6c37; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-ia-light.css: -------------------------------------------------------------------------------- 1 | /* iA Light by iA Inc. (modified by aramisgithub) */ 2 | 3 | :root { 4 | --base00: #f6f6f6; 5 | --base01: #dedede; 6 | --base02: #bde5f2; 7 | --base03: #898989; 8 | --base04: #767676; 9 | --base05: #181818; 10 | --base06: #e8e8e8; 11 | --base07: #f8f8f8; 12 | --base08: #9c5a02; 13 | --base09: #c43e18; 14 | --base0A: #c48218; 15 | --base0B: #38781c; 16 | --base0C: #2d6bb1; 17 | --base0D: #48bac2; 18 | --base0E: #a94598; 19 | --base0F: #8b6c37; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-icy.css: -------------------------------------------------------------------------------- 1 | /* Icy Dark by icyphox (https://icyphox.ga) */ 2 | 3 | :root { 4 | --base00: #021012; 5 | --base01: #031619; 6 | --base02: #041f23; 7 | --base03: #052e34; 8 | --base04: #064048; 9 | --base05: #095b67; 10 | --base06: #0c7c8c; 11 | --base07: #109cb0; 12 | --base08: #16c1d9; 13 | --base09: #b3ebf2; 14 | --base0A: #80deea; 15 | --base0B: #4dd0e1; 16 | --base0C: #26c6da; 17 | --base0D: #00bcd4; 18 | --base0E: #00acc1; 19 | --base0F: #0097a7; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-ir-black.css: -------------------------------------------------------------------------------- 1 | /* IR Black by Timothée Poisot (http://timotheepoisot.fr) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #242422; 6 | --base02: #484844; 7 | --base03: #6c6c66; 8 | --base04: #918f88; 9 | --base05: #b5b3aa; 10 | --base06: #d9d7cc; 11 | --base07: #fdfbee; 12 | --base08: #ff6c60; 13 | --base09: #e9c062; 14 | --base0A: #ffffb6; 15 | --base0B: #a8ff60; 16 | --base0C: #c6c5fe; 17 | --base0D: #96cbfe; 18 | --base0E: #ff73fd; 19 | --base0F: #b18a3d; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-irblack.css: -------------------------------------------------------------------------------- 1 | /* IR Black by Timothée Poisot (http://timotheepoisot.fr) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #242422; 6 | --base02: #484844; 7 | --base03: #6c6c66; 8 | --base04: #918f88; 9 | --base05: #b5b3aa; 10 | --base06: #d9d7cc; 11 | --base07: #fdfbee; 12 | --base08: #ff6c60; 13 | --base09: #e9c062; 14 | --base0A: #ffffb6; 15 | --base0B: #a8ff60; 16 | --base0C: #c6c5fe; 17 | --base0D: #96cbfe; 18 | --base0E: #ff73fd; 19 | --base0F: #b18a3d; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-isotope.css: -------------------------------------------------------------------------------- 1 | /* Isotope by Jan T. Sott */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #404040; 6 | --base02: #606060; 7 | --base03: #808080; 8 | --base04: #c0c0c0; 9 | --base05: #d0d0d0; 10 | --base06: #e0e0e0; 11 | --base07: #ffffff; 12 | --base08: #ff0000; 13 | --base09: #ff9900; 14 | --base0A: #ff0099; 15 | --base0B: #33ff00; 16 | --base0C: #00ffff; 17 | --base0D: #0066ff; 18 | --base0E: #cc00ff; 19 | --base0F: #3300ff; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-kimber.css: -------------------------------------------------------------------------------- 1 | /* Kimber by Mishka Nguyen (https://github.com/akhsiM) */ 2 | 3 | :root { 4 | --base00: #222222; 5 | --base01: #313131; 6 | --base02: #555D55; 7 | --base03: #644646; 8 | --base04: #5A5A5A; 9 | --base05: #DEDEE7; 10 | --base06: #C3C3B4; 11 | --base07: #FFFFE6; 12 | --base08: #C88C8C; 13 | --base09: #476C88; 14 | --base0A: #D8B56D; 15 | --base0B: #99C899; 16 | --base0C: #78B4B4; 17 | --base0D: #537C9C; 18 | --base0E: #86CACD; 19 | --base0F: #704F4F; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-london-tube.css: -------------------------------------------------------------------------------- 1 | /* London Tube by Jan T. Sott */ 2 | 3 | :root { 4 | --base00: #231f20; 5 | --base01: #1c3f95; 6 | --base02: #5a5758; 7 | --base03: #737171; 8 | --base04: #959ca1; 9 | --base05: #d9d8d8; 10 | --base06: #e7e7e8; 11 | --base07: #ffffff; 12 | --base08: #ee2e24; 13 | --base09: #f386a1; 14 | --base0A: #ffd204; 15 | --base0B: #00853e; 16 | --base0C: #85cebc; 17 | --base0D: #009ddc; 18 | --base0E: #98005d; 19 | --base0F: #b06110; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-macintosh.css: -------------------------------------------------------------------------------- 1 | /* Macintosh by Rebecca Bettencourt (http://www.kreativekorp.com) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #404040; 6 | --base02: #404040; 7 | --base03: #808080; 8 | --base04: #808080; 9 | --base05: #c0c0c0; 10 | --base06: #c0c0c0; 11 | --base07: #ffffff; 12 | --base08: #dd0907; 13 | --base09: #ff6403; 14 | --base0A: #fbf305; 15 | --base0B: #1fb714; 16 | --base0C: #02abea; 17 | --base0D: #0000d3; 18 | --base0E: #4700a5; 19 | --base0F: #90713a; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-marrakesh.css: -------------------------------------------------------------------------------- 1 | /* Marrakesh by Alexandre Gavioli (http://github.com/Alexx2/) */ 2 | 3 | :root { 4 | --base00: #201602; 5 | --base01: #302e00; 6 | --base02: #5f5b17; 7 | --base03: #6c6823; 8 | --base04: #86813b; 9 | --base05: #948e48; 10 | --base06: #ccc37a; 11 | --base07: #faf0a5; 12 | --base08: #c35359; 13 | --base09: #b36144; 14 | --base0A: #a88339; 15 | --base0B: #18974e; 16 | --base0C: #75a738; 17 | --base0D: #477ca1; 18 | --base0E: #8868b3; 19 | --base0F: #b3588e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-materia.css: -------------------------------------------------------------------------------- 1 | /* Materia by Defman21 */ 2 | 3 | :root { 4 | --base00: #263238; 5 | --base01: #2C393F; 6 | --base02: #37474F; 7 | --base03: #707880; 8 | --base04: #C9CCD3; 9 | --base05: #CDD3DE; 10 | --base06: #D5DBE5; 11 | --base07: #FFFFFF; 12 | --base08: #EC5F67; 13 | --base09: #EA9560; 14 | --base0A: #FFCC00; 15 | --base0B: #8BD649; 16 | --base0C: #80CBC4; 17 | --base0D: #89DDFF; 18 | --base0E: #82AAFF; 19 | --base0F: #EC5F67; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-material-darker.css: -------------------------------------------------------------------------------- 1 | /* Material Darker by Nate Peterson */ 2 | 3 | :root { 4 | --base00: #212121; 5 | --base01: #303030; 6 | --base02: #353535; 7 | --base03: #4A4A4A; 8 | --base04: #B2CCD6; 9 | --base05: #EEFFFF; 10 | --base06: #EEFFFF; 11 | --base07: #FFFFFF; 12 | --base08: #F07178; 13 | --base09: #F78C6C; 14 | --base0A: #FFCB6B; 15 | --base0B: #C3E88D; 16 | --base0C: #89DDFF; 17 | --base0D: #82AAFF; 18 | --base0E: #C792EA; 19 | --base0F: #FF5370; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-material-lighter.css: -------------------------------------------------------------------------------- 1 | /* Material Lighter by Nate Peterson */ 2 | 3 | :root { 4 | --base00: #FAFAFA; 5 | --base01: #E7EAEC; 6 | --base02: #CCEAE7; 7 | --base03: #CCD7DA; 8 | --base04: #8796B0; 9 | --base05: #80CBC4; 10 | --base06: #80CBC4; 11 | --base07: #FFFFFF; 12 | --base08: #FF5370; 13 | --base09: #F76D47; 14 | --base0A: #FFB62C; 15 | --base0B: #91B859; 16 | --base0C: #39ADB5; 17 | --base0D: #6182B8; 18 | --base0E: #7C4DFF; 19 | --base0F: #E53935; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-material-palenight.css: -------------------------------------------------------------------------------- 1 | /* Material Palenight by Nate Peterson */ 2 | 3 | :root { 4 | --base00: #292D3E; 5 | --base01: #444267; 6 | --base02: #32374D; 7 | --base03: #676E95; 8 | --base04: #8796B0; 9 | --base05: #959DCB; 10 | --base06: #959DCB; 11 | --base07: #FFFFFF; 12 | --base08: #F07178; 13 | --base09: #F78C6C; 14 | --base0A: #FFCB6B; 15 | --base0B: #C3E88D; 16 | --base0C: #89DDFF; 17 | --base0D: #82AAFF; 18 | --base0E: #C792EA; 19 | --base0F: #FF5370; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-material-vivid.css: -------------------------------------------------------------------------------- 1 | /* Material Vivid by joshyrobot */ 2 | 3 | :root { 4 | --base00: #202124; 5 | --base01: #27292c; 6 | --base02: #323639; 7 | --base03: #44464d; 8 | --base04: #676c71; 9 | --base05: #80868b; 10 | --base06: #9e9e9e; 11 | --base07: #ffffff; 12 | --base08: #f44336; 13 | --base09: #ff9800; 14 | --base0A: #ffeb3b; 15 | --base0B: #00e676; 16 | --base0C: #00bcd4; 17 | --base0D: #2196f3; 18 | --base0E: #673ab7; 19 | --base0F: #8d6e63; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-material.css: -------------------------------------------------------------------------------- 1 | /* Material by Nate Peterson */ 2 | 3 | :root { 4 | --base00: #263238; 5 | --base01: #2E3C43; 6 | --base02: #314549; 7 | --base03: #546E7A; 8 | --base04: #B2CCD6; 9 | --base05: #EEFFFF; 10 | --base06: #EEFFFF; 11 | --base07: #FFFFFF; 12 | --base08: #F07178; 13 | --base09: #F78C6C; 14 | --base0A: #FFCB6B; 15 | --base0B: #C3E88D; 16 | --base0C: #89DDFF; 17 | --base0D: #82AAFF; 18 | --base0E: #C792EA; 19 | --base0F: #FF5370; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-mellow-purple.css: -------------------------------------------------------------------------------- 1 | /* Mellow Purple by gidsi */ 2 | 3 | :root { 4 | --base00: #1e0528; 5 | --base01: #1A092D; 6 | --base02: #331354; 7 | --base03: #320f55; 8 | --base04: #873582; 9 | --base05: #ffeeff; 10 | --base06: #ffeeff; 11 | --base07: #f8c0ff; 12 | --base08: #00d9e9; 13 | --base09: #aa00a3; 14 | --base0A: #955ae7; 15 | --base0B: #05cb0d; 16 | --base0C: #b900b1; 17 | --base0D: #550068; 18 | --base0E: #8991bb; 19 | --base0F: #4d6fff; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-mexico-light.css: -------------------------------------------------------------------------------- 1 | /* Mexico Light by Sheldon Johnson */ 2 | 3 | :root { 4 | --base00: #f8f8f8; 5 | --base01: #e8e8e8; 6 | --base02: #d8d8d8; 7 | --base03: #b8b8b8; 8 | --base04: #585858; 9 | --base05: #383838; 10 | --base06: #282828; 11 | --base07: #181818; 12 | --base08: #ab4642; 13 | --base09: #dc9656; 14 | --base0A: #f79a0e; 15 | --base0B: #538947; 16 | --base0C: #4b8093; 17 | --base0D: #7cafc2; 18 | --base0E: #96609e; 19 | --base0F: #a16946; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-mocha.css: -------------------------------------------------------------------------------- 1 | /* Mocha by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #3B3228; 5 | --base01: #534636; 6 | --base02: #645240; 7 | --base03: #7e705a; 8 | --base04: #b8afad; 9 | --base05: #d0c8c6; 10 | --base06: #e9e1dd; 11 | --base07: #f5eeeb; 12 | --base08: #cb6077; 13 | --base09: #d28b71; 14 | --base0A: #f4bc87; 15 | --base0B: #beb55b; 16 | --base0C: #7bbda4; 17 | --base0D: #8ab3b5; 18 | --base0E: #a89bb9; 19 | --base0F: #bb9584; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-monokai.css: -------------------------------------------------------------------------------- 1 | /* Monokai by Wimer Hazenberg (http://www.monokai.nl) */ 2 | 3 | :root { 4 | --base00: #272822; 5 | --base01: #383830; 6 | --base02: #49483e; 7 | --base03: #75715e; 8 | --base04: #a59f85; 9 | --base05: #f8f8f2; 10 | --base06: #f5f4f1; 11 | --base07: #f9f8f5; 12 | --base08: #f92672; 13 | --base09: #fd971f; 14 | --base0A: #f4bf75; 15 | --base0B: #a6e22e; 16 | --base0C: #a1efe4; 17 | --base0D: #66d9ef; 18 | --base0E: #ae81ff; 19 | --base0F: #cc6633; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-nebula.css: -------------------------------------------------------------------------------- 1 | /* Nebula by Gabriel Fontes (https://github.com/Misterio77) */ 2 | 3 | :root { 4 | --base00: #22273b; 5 | --base01: #414f60; 6 | --base02: #5a8380; 7 | --base03: #6e6f72; 8 | --base04: #87888b; 9 | --base05: #a4a6a9; 10 | --base06: #c7c9cd; 11 | --base07: #8dbdaa; 12 | --base08: #777abc; 13 | --base09: #94929e; 14 | --base0A: #4f9062; 15 | --base0B: #6562a8; 16 | --base0C: #226f68; 17 | --base0D: #4d6bb6; 18 | --base0E: #716cae; 19 | --base0F: #8c70a7; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-nord.css: -------------------------------------------------------------------------------- 1 | /* Nord by arcticicestudio */ 2 | 3 | :root { 4 | --base00: #2E3440; 5 | --base01: #3B4252; 6 | --base02: #434C5E; 7 | --base03: #4C566A; 8 | --base04: #D8DEE9; 9 | --base05: #E5E9F0; 10 | --base06: #ECEFF4; 11 | --base07: #8FBCBB; 12 | --base08: #BF616A; 13 | --base09: #D08770; 14 | --base0A: #EBCB8B; 15 | --base0B: #A3BE8C; 16 | --base0C: #88C0D0; 17 | --base0D: #81A1C1; 18 | --base0E: #B48EAD; 19 | --base0F: #5E81AC; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-nova.css: -------------------------------------------------------------------------------- 1 | /* Nova by George Essig (https://github.com/gessig), Trevor D. Miller (https://trevordmiller.com) */ 2 | 3 | :root { 4 | --base00: #3C4C55; 5 | --base01: #556873; 6 | --base02: #6A7D89; 7 | --base03: #899BA6; 8 | --base04: #899BA6; 9 | --base05: #C5D4DD; 10 | --base06: #899BA6; 11 | --base07: #556873; 12 | --base08: #83AFE5; 13 | --base09: #7FC1CA; 14 | --base0A: #A8CE93; 15 | --base0B: #7FC1CA; 16 | --base0C: #F2C38F; 17 | --base0D: #83AFE5; 18 | --base0E: #9A93E1; 19 | --base0F: #F2C38F; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-ocean.css: -------------------------------------------------------------------------------- 1 | /* Ocean by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #2b303b; 5 | --base01: #343d46; 6 | --base02: #4f5b66; 7 | --base03: #65737e; 8 | --base04: #a7adba; 9 | --base05: #c0c5ce; 10 | --base06: #dfe1e8; 11 | --base07: #eff1f5; 12 | --base08: #bf616a; 13 | --base09: #d08770; 14 | --base0A: #ebcb8b; 15 | --base0B: #a3be8c; 16 | --base0C: #96b5b4; 17 | --base0D: #8fa1b3; 18 | --base0E: #b48ead; 19 | --base0F: #ab7967; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-oceanicnext.css: -------------------------------------------------------------------------------- 1 | /* OceanicNext by https://github.com/voronianski/oceanic-next-color-scheme */ 2 | 3 | :root { 4 | --base00: #1B2B34; 5 | --base01: #343D46; 6 | --base02: #4F5B66; 7 | --base03: #65737E; 8 | --base04: #A7ADBA; 9 | --base05: #C0C5CE; 10 | --base06: #CDD3DE; 11 | --base07: #D8DEE9; 12 | --base08: #EC5f67; 13 | --base09: #F99157; 14 | --base0A: #FAC863; 15 | --base0B: #99C794; 16 | --base0C: #5FB3B3; 17 | --base0D: #6699CC; 18 | --base0E: #C594C5; 19 | --base0F: #AB7967; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-one-light.css: -------------------------------------------------------------------------------- 1 | /* One Light by Daniel Pfeifer (http://github.com/purpleKarrot) */ 2 | 3 | :root { 4 | --base00: #fafafa; 5 | --base01: #f0f0f1; 6 | --base02: #e5e5e6; 7 | --base03: #a0a1a7; 8 | --base04: #696c77; 9 | --base05: #383a42; 10 | --base06: #202227; 11 | --base07: #090a0b; 12 | --base08: #ca1243; 13 | --base09: #d75f00; 14 | --base0A: #c18401; 15 | --base0B: #50a14f; 16 | --base0C: #0184bc; 17 | --base0D: #4078f2; 18 | --base0E: #a626a4; 19 | --base0F: #986801; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-onedark.css: -------------------------------------------------------------------------------- 1 | /* OneDark by Lalit Magant (http://github.com/tilal6991) */ 2 | 3 | :root { 4 | --base00: #282c34; 5 | --base01: #353b45; 6 | --base02: #3e4451; 7 | --base03: #545862; 8 | --base04: #565c64; 9 | --base05: #abb2bf; 10 | --base06: #b6bdca; 11 | --base07: #c8ccd4; 12 | --base08: #e06c75; 13 | --base09: #d19a66; 14 | --base0A: #e5c07b; 15 | --base0B: #98c379; 16 | --base0C: #56b6c2; 17 | --base0D: #61afef; 18 | --base0E: #c678dd; 19 | --base0F: #be5046; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-outrun-dark.css: -------------------------------------------------------------------------------- 1 | /* Outrun Dark by Hugo Delahousse (http://github.com/hugodelahousse/) */ 2 | 3 | :root { 4 | --base00: #00002A; 5 | --base01: #20204A; 6 | --base02: #30305A; 7 | --base03: #50507A; 8 | --base04: #B0B0DA; 9 | --base05: #D0D0FA; 10 | --base06: #E0E0FF; 11 | --base07: #F5F5FF; 12 | --base08: #FF4242; 13 | --base09: #FC8D28; 14 | --base0A: #F3E877; 15 | --base0B: #59F176; 16 | --base0C: #0EF0F0; 17 | --base0D: #66B0FF; 18 | --base0E: #F10596; 19 | --base0F: #F003EF; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-papercolor-dark.css: -------------------------------------------------------------------------------- 1 | /* PaperColor Dark by Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) */ 2 | 3 | :root { 4 | --base00: #1c1c1c; 5 | --base01: #af005f; 6 | --base02: #5faf00; 7 | --base03: #d7af5f; 8 | --base04: #5fafd7; 9 | --base05: #808080; 10 | --base06: #d7875f; 11 | --base07: #d0d0d0; 12 | --base08: #585858; 13 | --base09: #5faf5f; 14 | --base0A: #afd700; 15 | --base0B: #af87d7; 16 | --base0C: #ffaf00; 17 | --base0D: #ff5faf; 18 | --base0E: #00afaf; 19 | --base0F: #5f8787; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-papercolor-light.css: -------------------------------------------------------------------------------- 1 | /* PaperColor Light by Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme) */ 2 | 3 | :root { 4 | --base00: #eeeeee; 5 | --base01: #af0000; 6 | --base02: #008700; 7 | --base03: #5f8700; 8 | --base04: #0087af; 9 | --base05: #444444; 10 | --base06: #005f87; 11 | --base07: #878787; 12 | --base08: #bcbcbc; 13 | --base09: #d70000; 14 | --base0A: #d70087; 15 | --base0B: #8700af; 16 | --base0C: #d75f00; 17 | --base0D: #d75f00; 18 | --base0E: #005faf; 19 | --base0F: #005f87; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-paraiso.css: -------------------------------------------------------------------------------- 1 | /* Paraiso by Jan T. Sott */ 2 | 3 | :root { 4 | --base00: #2f1e2e; 5 | --base01: #41323f; 6 | --base02: #4f424c; 7 | --base03: #776e71; 8 | --base04: #8d8687; 9 | --base05: #a39e9b; 10 | --base06: #b9b6b0; 11 | --base07: #e7e9db; 12 | --base08: #ef6155; 13 | --base09: #f99b15; 14 | --base0A: #fec418; 15 | --base0B: #48b685; 16 | --base0C: #5bc4bf; 17 | --base0D: #06b6ef; 18 | --base0E: #815ba4; 19 | --base0F: #e96ba8; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-pasque.css: -------------------------------------------------------------------------------- 1 | /* Pasque by Gabriel Fontes (https://github.com/Misterio77) */ 2 | 3 | :root { 4 | --base00: #271C3A; 5 | --base01: #100323; 6 | --base02: #3E2D5C; 7 | --base03: #5D5766; 8 | --base04: #BEBCBF; 9 | --base05: #DEDCDF; 10 | --base06: #EDEAEF; 11 | --base07: #BBAADD; 12 | --base08: #A92258; 13 | --base09: #918889; 14 | --base0A: #804ead; 15 | --base0B: #C6914B; 16 | --base0C: #7263AA; 17 | --base0D: #8E7DC6; 18 | --base0E: #953B9D; 19 | --base0F: #59325C; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-phd.css: -------------------------------------------------------------------------------- 1 | /* PhD by Hennig Hasemann (http://leetless.de/vim.html) */ 2 | 3 | :root { 4 | --base00: #061229; 5 | --base01: #2a3448; 6 | --base02: #4d5666; 7 | --base03: #717885; 8 | --base04: #9a99a3; 9 | --base05: #b8bbc2; 10 | --base06: #dbdde0; 11 | --base07: #ffffff; 12 | --base08: #d07346; 13 | --base09: #f0a000; 14 | --base0A: #fbd461; 15 | --base0B: #99bf52; 16 | --base0C: #72b9bf; 17 | --base0D: #5299bf; 18 | --base0E: #9989cc; 19 | --base0F: #b08060; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-pico.css: -------------------------------------------------------------------------------- 1 | /* Pico by PICO-8 (http://www.lexaloffle.com/pico-8.php) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #1d2b53; 6 | --base02: #7e2553; 7 | --base03: #008751; 8 | --base04: #ab5236; 9 | --base05: #5f574f; 10 | --base06: #c2c3c7; 11 | --base07: #fff1e8; 12 | --base08: #ff004d; 13 | --base09: #ffa300; 14 | --base0A: #fff024; 15 | --base0B: #00e756; 16 | --base0C: #29adff; 17 | --base0D: #83769c; 18 | --base0E: #ff77a8; 19 | --base0F: #ffccaa; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-pinky.css: -------------------------------------------------------------------------------- 1 | /* pinky by Benjamin (https://github.com/b3nj5m1n) */ 2 | 3 | :root { 4 | --base00: #171517; 5 | --base01: #1b181b; 6 | --base02: #1d1b1d; 7 | --base03: #383338; 8 | --base04: #e7dbdb; 9 | --base05: #f5f5f5; 10 | --base06: #ffffff; 11 | --base07: #f7f3f7; 12 | --base08: #ffa600; 13 | --base09: #00ff66; 14 | --base0A: #20df6c; 15 | --base0B: #ff0066; 16 | --base0C: #6600ff; 17 | --base0D: #00ffff; 18 | --base0E: #007fff; 19 | --base0F: #df206c; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-pop.css: -------------------------------------------------------------------------------- 1 | /* Pop by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #202020; 6 | --base02: #303030; 7 | --base03: #505050; 8 | --base04: #b0b0b0; 9 | --base05: #d0d0d0; 10 | --base06: #e0e0e0; 11 | --base07: #ffffff; 12 | --base08: #eb008a; 13 | --base09: #f29333; 14 | --base0A: #f8ca12; 15 | --base0B: #37b349; 16 | --base0C: #00aabb; 17 | --base0D: #0e5a94; 18 | --base0E: #b31e8d; 19 | --base0F: #7a2d00; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-porple.css: -------------------------------------------------------------------------------- 1 | /* Porple by Niek den Breeje (https://github.com/AuditeMarlow) */ 2 | 3 | :root { 4 | --base00: #292c36; 5 | --base01: #333344; 6 | --base02: #474160; 7 | --base03: #65568a; 8 | --base04: #b8b8b8; 9 | --base05: #d8d8d8; 10 | --base06: #e8e8e8; 11 | --base07: #f8f8f8; 12 | --base08: #f84547; 13 | --base09: #d28e5d; 14 | --base0A: #efa16b; 15 | --base0B: #95c76f; 16 | --base0C: #64878f; 17 | --base0D: #8485ce; 18 | --base0E: #b74989; 19 | --base0F: #986841; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-qualia.css: -------------------------------------------------------------------------------- 1 | /* Qualia by isaacwhanson */ 2 | 3 | :root { 4 | --base00: #101010; 5 | --base01: #454545; 6 | --base02: #454545; 7 | --base03: #454545; 8 | --base04: #808080; 9 | --base05: #C0C0C0; 10 | --base06: #C0C0C0; 11 | --base07: #454545; 12 | --base08: #EFA6A2; 13 | --base09: #A3B8EF; 14 | --base0A: #E6A3DC; 15 | --base0B: #80C990; 16 | --base0C: #C8C874; 17 | --base0D: #50CACD; 18 | --base0E: #E0AF85; 19 | --base0F: #808080; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-railscasts.css: -------------------------------------------------------------------------------- 1 | /* Railscasts by Ryan Bates (http://railscasts.com) */ 2 | 3 | :root { 4 | --base00: #2b2b2b; 5 | --base01: #272935; 6 | --base02: #3a4055; 7 | --base03: #5a647e; 8 | --base04: #d4cfc9; 9 | --base05: #e6e1dc; 10 | --base06: #f4f1ed; 11 | --base07: #f9f7f3; 12 | --base08: #da4939; 13 | --base09: #cc7833; 14 | --base0A: #ffc66d; 15 | --base0B: #a5c261; 16 | --base0C: #519f50; 17 | --base0D: #6d9cbe; 18 | --base0E: #b6b3eb; 19 | --base0F: #bc9458; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-rebecca.css: -------------------------------------------------------------------------------- 1 | /* Rebecca by Victor Borja (http://github.com/vic) based on Rebecca Theme (http://github.com/vic/rebecca-theme) */ 2 | 3 | :root { 4 | --base00: #292a44; 5 | --base01: #663399; 6 | --base02: #383a62; 7 | --base03: #666699; 8 | --base04: #a0a0c5; 9 | --base05: #f1eff8; 10 | --base06: #ccccff; 11 | --base07: #53495d; 12 | --base08: #a0a0c5; 13 | --base09: #efe4a1; 14 | --base0A: #ae81ff; 15 | --base0B: #6dfedf; 16 | --base0C: #8eaee0; 17 | --base0D: #2de0a7; 18 | --base0E: #7aa5ff; 19 | --base0F: #ff79c6; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-rose-pine-dawn.css: -------------------------------------------------------------------------------- 1 | /* Rosé Pine Dawn by Emilia Dunfelt */ 2 | 3 | :root { 4 | --base00: #faf4ed; 5 | --base01: #fffaf3; 6 | --base02: #f2e9de; 7 | --base03: #9893a5; 8 | --base04: #6e6a86; 9 | --base05: #575279; 10 | --base06: #555169; 11 | --base07: #26233a; 12 | --base08: #b4637a; 13 | --base09: #ea9d34; 14 | --base0A: #ea9d34; 15 | --base0B: #286983; 16 | --base0C: #d7827e; 17 | --base0D: #56949f; 18 | --base0E: #907aa9; 19 | --base0F: #c5c3ce; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-rose-pine-moon.css: -------------------------------------------------------------------------------- 1 | /* Rosé Pine Moon by Emilia Dunfelt */ 2 | 3 | :root { 4 | --base00: #232136; 5 | --base01: #2a273f; 6 | --base02: #393552; 7 | --base03: #59546d; 8 | --base04: #817c9c; 9 | --base05: #e0def4; 10 | --base06: #f5f5f7; 11 | --base07: #d9d7e1; 12 | --base08: #eb6f92; 13 | --base09: #f6c177; 14 | --base0A: #f6c177; 15 | --base0B: #3e8fb0; 16 | --base0C: #ea9a97; 17 | --base0D: #9ccfd8; 18 | --base0E: #c4a7e7; 19 | --base0F: #b9b9bc; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-rose-pine.css: -------------------------------------------------------------------------------- 1 | /* Rosé Pine by Emilia Dunfelt */ 2 | 3 | :root { 4 | --base00: #191724; 5 | --base01: #1f1d2e; 6 | --base02: #26233a; 7 | --base03: #555169; 8 | --base04: #6e6a86; 9 | --base05: #e0def4; 10 | --base06: #f0f0f3; 11 | --base07: #c5c3ce; 12 | --base08: #eb6f92; 13 | --base09: #f6c177; 14 | --base0A: #f6c177; 15 | --base0B: #31748f; 16 | --base0C: #ebbcba; 17 | --base0D: #9ccfd8; 18 | --base0E: #c4a7e7; 19 | --base0F: #e5e5e5; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-sagelight.css: -------------------------------------------------------------------------------- 1 | /* Sagelight by Carter Veldhuizen */ 2 | 3 | :root { 4 | --base00: #f8f8f8; 5 | --base01: #e8e8e8; 6 | --base02: #d8d8d8; 7 | --base03: #b8b8b8; 8 | --base04: #585858; 9 | --base05: #383838; 10 | --base06: #282828; 11 | --base07: #181818; 12 | --base08: #fa8480; 13 | --base09: #ffaa61; 14 | --base0A: #ffdc61; 15 | --base0B: #a0d2c8; 16 | --base0C: #a2d6f5; 17 | --base0D: #a0a7d2; 18 | --base0E: #c8a0d2; 19 | --base0F: #d2b2a0; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-sakura.css: -------------------------------------------------------------------------------- 1 | /* Sakura by Misterio77 (http://github.com/Misterio77) */ 2 | 3 | :root { 4 | --base00: #feedf3; 5 | --base01: #f8e2e7; 6 | --base02: #e0ccd1; 7 | --base03: #755f64; 8 | --base04: #665055; 9 | --base05: #564448; 10 | --base06: #42383a; 11 | --base07: #33292b; 12 | --base08: #df2d52; 13 | --base09: #f6661e; 14 | --base0A: #c29461; 15 | --base0B: #2e916d; 16 | --base0C: #1d8991; 17 | --base0D: #006e93; 18 | --base0E: #5e2180; 19 | --base0F: #ba0d35; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-sandcastle.css: -------------------------------------------------------------------------------- 1 | /* Sandcastle by George Essig (https://github.com/gessig) */ 2 | 3 | :root { 4 | --base00: #282c34; 5 | --base01: #2c323b; 6 | --base02: #3e4451; 7 | --base03: #665c54; 8 | --base04: #928374; 9 | --base05: #a89984; 10 | --base06: #d5c4a1; 11 | --base07: #fdf4c1; 12 | --base08: #83a598; 13 | --base09: #a07e3b; 14 | --base0A: #a07e3b; 15 | --base0B: #528b8b; 16 | --base0C: #83a598; 17 | --base0D: #83a598; 18 | --base0E: #d75f5f; 19 | --base0F: #a87322; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-seti-ui.css: -------------------------------------------------------------------------------- 1 | /* Seti UI by */ 2 | 3 | :root { 4 | --base00: #151718; 5 | --base01: #8ec43d; 6 | --base02: #3B758C; 7 | --base03: #41535B; 8 | --base04: #43a5d5; 9 | --base05: #d6d6d6; 10 | --base06: #eeeeee; 11 | --base07: #ffffff; 12 | --base08: #Cd3f45; 13 | --base09: #db7b55; 14 | --base0A: #e6cd69; 15 | --base0B: #9fca56; 16 | --base0C: #55dbbe; 17 | --base0D: #55b5db; 18 | --base0E: #a074c4; 19 | --base0F: #8a553f; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-seti.css: -------------------------------------------------------------------------------- 1 | /* Seti UI by */ 2 | 3 | :root { 4 | --base00: #151718; 5 | --base01: #282a2b; 6 | --base02: #3B758C; 7 | --base03: #41535B; 8 | --base04: #43a5d5; 9 | --base05: #d6d6d6; 10 | --base06: #eeeeee; 11 | --base07: #ffffff; 12 | --base08: #Cd3f45; 13 | --base09: #db7b55; 14 | --base0A: #e6cd69; 15 | --base0B: #9fca56; 16 | --base0C: #55dbbe; 17 | --base0D: #55b5db; 18 | --base0E: #a074c4; 19 | --base0F: #8a553f; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-shades-of-purple.css: -------------------------------------------------------------------------------- 1 | /* Shades of Purple by Iolar Demartini Junior (http://github.com/demartini) based on Shades of Purple Theme (https://github.com/ahmadawais/shades-of-purple-vscode). */ 2 | 3 | :root { 4 | --base00: #1e1e3f; 5 | --base01: #43d426; 6 | --base02: #f1d000; 7 | --base03: #808080; 8 | --base04: #6871ff; 9 | --base05: #c7c7c7; 10 | --base06: #ff77ff; 11 | --base07: #ffffff; 12 | --base08: #d90429; 13 | --base09: #f92a1c; 14 | --base0A: #ffe700; 15 | --base0B: #3ad900; 16 | --base0C: #00c5c7; 17 | --base0D: #6943ff; 18 | --base0E: #ff2c70; 19 | --base0F: #79e8fb; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-shapeshifter.css: -------------------------------------------------------------------------------- 1 | /* Shapeshifter by Tyler Benziger (http://tybenz.com) */ 2 | 3 | :root { 4 | --base00: #f9f9f9; 5 | --base01: #e0e0e0; 6 | --base02: #ababab; 7 | --base03: #555555; 8 | --base04: #343434; 9 | --base05: #102015; 10 | --base06: #040404; 11 | --base07: #000000; 12 | --base08: #e92f2f; 13 | --base09: #e09448; 14 | --base0A: #dddd13; 15 | --base0B: #0ed839; 16 | --base0C: #23edda; 17 | --base0D: #3b48e3; 18 | --base0E: #f996e2; 19 | --base0F: #69542d; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-silk-dark.css: -------------------------------------------------------------------------------- 1 | /* Silk Dark by Gabriel Fontes (https://github.com/Misterio77) */ 2 | 3 | :root { 4 | --base00: #0e3c46; 5 | --base01: #1D494E; 6 | --base02: #2A5054; 7 | --base03: #587073; 8 | --base04: #9DC8CD; 9 | --base05: #C7DBDD; 10 | --base06: #CBF2F7; 11 | --base07: #D2FAFF; 12 | --base08: #fb6953; 13 | --base09: #fcab74; 14 | --base0A: #fce380; 15 | --base0B: #73d8ad; 16 | --base0C: #3fb2b9; 17 | --base0D: #46bddd; 18 | --base0E: #756b8a; 19 | --base0F: #9b647b; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-silk-light.css: -------------------------------------------------------------------------------- 1 | /* Silk Light by Gabriel Fontes (https://github.com/Misterio77) */ 2 | 3 | :root { 4 | --base00: #E9F1EF; 5 | --base01: #CCD4D3; 6 | --base02: #90B7B6; 7 | --base03: #5C787B; 8 | --base04: #4B5B5F; 9 | --base05: #385156; 10 | --base06: #0e3c46; 11 | --base07: #D2FAFF; 12 | --base08: #CF432E; 13 | --base09: #D27F46; 14 | --base0A: #CFAD25; 15 | --base0B: #6CA38C; 16 | --base0C: #329CA2; 17 | --base0D: #39AAC9; 18 | --base0E: #6E6582; 19 | --base0F: #865369; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-snazzy.css: -------------------------------------------------------------------------------- 1 | /* Snazzy by Chawye Hsu (https://github.com/chawyehsu) based on Hyper Snazzy Theme (https://github.com/sindresorhus/hyper-snazzy) */ 2 | 3 | :root { 4 | --base00: #282a36; 5 | --base01: #34353e; 6 | --base02: #43454f; 7 | --base03: #78787e; 8 | --base04: #a5a5a9; 9 | --base05: #e2e4e5; 10 | --base06: #eff0eb; 11 | --base07: #f1f1f0; 12 | --base08: #ff5c57; 13 | --base09: #ff9f43; 14 | --base0A: #f3f99d; 15 | --base0B: #5af78e; 16 | --base0C: #9aedfe; 17 | --base0D: #57c7ff; 18 | --base0E: #ff6ac1; 19 | --base0F: #b2643c; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-solar-flare.css: -------------------------------------------------------------------------------- 1 | /* Solar Flare by Chuck Harmston (https://chuck.harmston.ch) */ 2 | 3 | :root { 4 | --base00: #18262F; 5 | --base01: #222E38; 6 | --base02: #586875; 7 | --base03: #667581; 8 | --base04: #85939E; 9 | --base05: #A6AFB8; 10 | --base06: #E8E9ED; 11 | --base07: #F5F7FA; 12 | --base08: #EF5253; 13 | --base09: #E66B2B; 14 | --base0A: #E4B51C; 15 | --base0B: #7CC844; 16 | --base0C: #52CBB0; 17 | --base0D: #33B5E1; 18 | --base0E: #A363D5; 19 | --base0F: #D73C9A; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-solarflare-light.css: -------------------------------------------------------------------------------- 1 | /* Solar Flare Light by Chuck Harmston (https://chuck.harmston.ch) */ 2 | 3 | :root { 4 | --base00: #F5F7FA; 5 | --base01: #E8E9ED; 6 | --base02: #A6AFB8; 7 | --base03: #85939E; 8 | --base04: #667581; 9 | --base05: #586875; 10 | --base06: #222E38; 11 | --base07: #18262F; 12 | --base08: #EF5253; 13 | --base09: #E66B2B; 14 | --base0A: #E4B51C; 15 | --base0B: #7CC844; 16 | --base0C: #52CBB0; 17 | --base0D: #33B5E1; 18 | --base0E: #A363D5; 19 | --base0F: #D73C9A; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-solarflare.css: -------------------------------------------------------------------------------- 1 | /* Solar Flare by Chuck Harmston (https://chuck.harmston.ch) */ 2 | 3 | :root { 4 | --base00: #18262F; 5 | --base01: #222E38; 6 | --base02: #586875; 7 | --base03: #667581; 8 | --base04: #85939E; 9 | --base05: #A6AFB8; 10 | --base06: #E8E9ED; 11 | --base07: #F5F7FA; 12 | --base08: #EF5253; 13 | --base09: #E66B2B; 14 | --base0A: #E4B51C; 15 | --base0B: #7CC844; 16 | --base0C: #52CBB0; 17 | --base0D: #33B5E1; 18 | --base0E: #A363D5; 19 | --base0F: #D73C9A; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-solarized-dark.css: -------------------------------------------------------------------------------- 1 | /* Solarized Dark by Ethan Schoonover (modified by aramisgithub) */ 2 | 3 | :root { 4 | --base00: #002b36; 5 | --base01: #073642; 6 | --base02: #586e75; 7 | --base03: #657b83; 8 | --base04: #839496; 9 | --base05: #93a1a1; 10 | --base06: #eee8d5; 11 | --base07: #fdf6e3; 12 | --base08: #dc322f; 13 | --base09: #cb4b16; 14 | --base0A: #b58900; 15 | --base0B: #859900; 16 | --base0C: #2aa198; 17 | --base0D: #268bd2; 18 | --base0E: #6c71c4; 19 | --base0F: #d33682; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-solarized-light.css: -------------------------------------------------------------------------------- 1 | /* Solarized Light by Ethan Schoonover (modified by aramisgithub) */ 2 | 3 | :root { 4 | --base00: #fdf6e3; 5 | --base01: #eee8d5; 6 | --base02: #93a1a1; 7 | --base03: #839496; 8 | --base04: #657b83; 9 | --base05: #586e75; 10 | --base06: #073642; 11 | --base07: #002b36; 12 | --base08: #dc322f; 13 | --base09: #cb4b16; 14 | --base0A: #b58900; 15 | --base0B: #859900; 16 | --base0C: #2aa198; 17 | --base0D: #268bd2; 18 | --base0E: #6c71c4; 19 | --base0F: #d33682; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-spacemacs.css: -------------------------------------------------------------------------------- 1 | /* Spacemacs by Nasser Alshammari (https://github.com/nashamri/spacemacs-theme) */ 2 | 3 | :root { 4 | --base00: #1f2022; 5 | --base01: #282828; 6 | --base02: #444155; 7 | --base03: #585858; 8 | --base04: #b8b8b8; 9 | --base05: #a3a3a3; 10 | --base06: #e8e8e8; 11 | --base07: #f8f8f8; 12 | --base08: #f2241f; 13 | --base09: #ffa500; 14 | --base0A: #b1951d; 15 | --base0B: #67b11d; 16 | --base0C: #2d9574; 17 | --base0D: #4f97d7; 18 | --base0E: #a31db1; 19 | --base0F: #b03060; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-summercamp.css: -------------------------------------------------------------------------------- 1 | /* summercamp by zoe firi (zoefiri.github.io) */ 2 | 3 | :root { 4 | --base00: #1c1810; 5 | --base01: #2a261c; 6 | --base02: #3a3527; 7 | --base03: #504b38; 8 | --base04: #5f5b45; 9 | --base05: #736e55; 10 | --base06: #bab696; 11 | --base07: #f8f5de; 12 | --base08: #e35142; 13 | --base09: #fba11b; 14 | --base0A: #f2ff27; 15 | --base0B: #5ceb5a; 16 | --base0C: #5aebbc; 17 | --base0D: #489bf0; 18 | --base0E: #FF8080; 19 | --base0F: #F69BE7; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-summerfruit-dark.css: -------------------------------------------------------------------------------- 1 | /* Summerfruit Dark by Christopher Corley (http://christop.club/) */ 2 | 3 | :root { 4 | --base00: #151515; 5 | --base01: #202020; 6 | --base02: #303030; 7 | --base03: #505050; 8 | --base04: #B0B0B0; 9 | --base05: #D0D0D0; 10 | --base06: #E0E0E0; 11 | --base07: #FFFFFF; 12 | --base08: #FF0086; 13 | --base09: #FD8900; 14 | --base0A: #ABA800; 15 | --base0B: #00C918; 16 | --base0C: #1FAAAA; 17 | --base0D: #3777E6; 18 | --base0E: #AD00A1; 19 | --base0F: #CC6633; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-summerfruit-light.css: -------------------------------------------------------------------------------- 1 | /* Summerfruit Light by Christopher Corley (http://christop.club/) */ 2 | 3 | :root { 4 | --base00: #FFFFFF; 5 | --base01: #E0E0E0; 6 | --base02: #D0D0D0; 7 | --base03: #B0B0B0; 8 | --base04: #000000; 9 | --base05: #101010; 10 | --base06: #151515; 11 | --base07: #202020; 12 | --base08: #FF0086; 13 | --base09: #FD8900; 14 | --base0A: #ABA800; 15 | --base0B: #00C918; 16 | --base0C: #1FAAAA; 17 | --base0D: #3777E6; 18 | --base0E: #AD00A1; 19 | --base0F: #CC6633; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-synth-midnight-dark.css: -------------------------------------------------------------------------------- 1 | /* Synth Midnight Terminal Dark by Michaël Ball (http://github.com/michael-ball/) */ 2 | 3 | :root { 4 | --base00: #050608; 5 | --base01: #1a1b1c; 6 | --base02: #28292a; 7 | --base03: #474849; 8 | --base04: #a3a5a6; 9 | --base05: #c1c3c4; 10 | --base06: #cfd1d2; 11 | --base07: #dddfe0; 12 | --base08: #b53b50; 13 | --base09: #ea770d; 14 | --base0A: #c9d364; 15 | --base0B: #06ea61; 16 | --base0C: #42fff9; 17 | --base0D: #03aeff; 18 | --base0E: #ea5ce2; 19 | --base0F: #cd6320; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-synth-midnight-light.css: -------------------------------------------------------------------------------- 1 | /* Synth Midnight Terminal Light by Michaël Ball (http://github.com/michael-ball/) */ 2 | 3 | :root { 4 | --base00: #dddfe0; 5 | --base01: #cfd1d2; 6 | --base02: #c1c3c4; 7 | --base03: #a3a5a6; 8 | --base04: #474849; 9 | --base05: #28292a; 10 | --base06: #1a1b1c; 11 | --base07: #050608; 12 | --base08: #b53b50; 13 | --base09: #ea770d; 14 | --base0A: #c9d364; 15 | --base0B: #06ea61; 16 | --base0C: #42fff9; 17 | --base0D: #03aeff; 18 | --base0E: #ea5ce2; 19 | --base0F: #cd6320; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tango.css: -------------------------------------------------------------------------------- 1 | /* Tango by @Schnouki, based on the Tango Desktop Project */ 2 | 3 | :root { 4 | --base00: #2e3436; 5 | --base01: #8ae234; 6 | --base02: #fce94f; 7 | --base03: #555753; 8 | --base04: #729fcf; 9 | --base05: #d3d7cf; 10 | --base06: #ad7fa8; 11 | --base07: #eeeeec; 12 | --base08: #cc0000; 13 | --base09: #ef2929; 14 | --base0A: #c4a000; 15 | --base0B: #4e9a06; 16 | --base0C: #06989a; 17 | --base0D: #3465a4; 18 | --base0E: #75507b; 19 | --base0F: #34e2e2; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tender.css: -------------------------------------------------------------------------------- 1 | /* tender by Jacobo Tabernero (https://github/com/jacoborus/tender.vim) */ 2 | 3 | :root { 4 | --base00: #282828; 5 | --base01: #383838; 6 | --base02: #484848; 7 | --base03: #4c4c4c; 8 | --base04: #b8b8b8; 9 | --base05: #eeeeee; 10 | --base06: #e8e8e8; 11 | --base07: #feffff; 12 | --base08: #f43753; 13 | --base09: #dc9656; 14 | --base0A: #ffc24b; 15 | --base0B: #c9d05c; 16 | --base0C: #73cef4; 17 | --base0D: #b3deef; 18 | --base0E: #d3b987; 19 | --base0F: #a16946; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tokyo-city-dark.css: -------------------------------------------------------------------------------- 1 | /* Tokyo City Dark by Michaël Ball */ 2 | 3 | :root { 4 | --base00: #171D23; 5 | --base01: #1D252C; 6 | --base02: #28323A; 7 | --base03: #526270; 8 | --base04: #B7C5D3; 9 | --base05: #D8E2EC; 10 | --base06: #F6F6F8; 11 | --base07: #FBFBFD; 12 | --base08: #F7768E; 13 | --base09: #FF9E64; 14 | --base0A: #B7C5D3; 15 | --base0B: #9ECE6A; 16 | --base0C: #89DDFF; 17 | --base0D: #7AA2F7; 18 | --base0E: #BB9AF7; 19 | --base0F: #BB9AF7; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tokyo-city-light.css: -------------------------------------------------------------------------------- 1 | /* Tokyo City Light by Michaël Ball */ 2 | 3 | :root { 4 | --base00: #FBFBFD; 5 | --base01: #F6F6F8; 6 | --base02: #EDEFF6; 7 | --base03: #9699A3; 8 | --base04: #4c505e; 9 | --base05: #343B59; 10 | --base06: #1D252C; 11 | --base07: #171D23; 12 | --base08: #8C4351; 13 | --base09: #965027; 14 | --base0A: #4C505E; 15 | --base0B: #485E30; 16 | --base0C: #4C505E; 17 | --base0D: #34548a; 18 | --base0E: #5A4A78; 19 | --base0F: #5A4A78; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tokyo-city-terminal-dark.css: -------------------------------------------------------------------------------- 1 | /* Tokyo City Terminal Dark by Michaël Ball */ 2 | 3 | :root { 4 | --base00: #171D23; 5 | --base01: #1D252C; 6 | --base02: #28323A; 7 | --base03: #526270; 8 | --base04: #B7C5D3; 9 | --base05: #D8E2EC; 10 | --base06: #F6F6F8; 11 | --base07: #FBFBFD; 12 | --base08: #D95468; 13 | --base09: #FF9E64; 14 | --base0A: #EBBF83; 15 | --base0B: #8BD49C; 16 | --base0C: #70E1E8; 17 | --base0D: #539AFC; 18 | --base0E: #B62D65; 19 | --base0F: #DD9D82; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tokyo-city-terminal-light.css: -------------------------------------------------------------------------------- 1 | /* Tokyo City Terminal Light by Michaël Ball */ 2 | 3 | :root { 4 | --base00: #FBFBFD; 5 | --base01: #F6F6F8; 6 | --base02: #D8E2EC; 7 | --base03: #B7C5D3; 8 | --base04: #526270; 9 | --base05: #28323A; 10 | --base06: #1D252C; 11 | --base07: #171D23; 12 | --base08: #8C4351; 13 | --base09: #965027; 14 | --base0A: #8f5E15; 15 | --base0B: #33635C; 16 | --base0C: #0F4B6E; 17 | --base0D: #34548A; 18 | --base0E: #5A4A78; 19 | --base0F: #7E5140; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tokyo-night-dark.css: -------------------------------------------------------------------------------- 1 | /* Tokyo Night Dark by Michaël Ball */ 2 | 3 | :root { 4 | --base00: #1A1B26; 5 | --base01: #16161E; 6 | --base02: #2F3549; 7 | --base03: #444B6A; 8 | --base04: #787C99; 9 | --base05: #A9B1D6; 10 | --base06: #CBCCD1; 11 | --base07: #D5D6DB; 12 | --base08: #C0CAF5; 13 | --base09: #A9B1D6; 14 | --base0A: #0DB9D7; 15 | --base0B: #9ECE6A; 16 | --base0C: #B4F9F8; 17 | --base0D: #2AC3DE; 18 | --base0E: #BB9AF7; 19 | --base0F: #F7768E; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tokyo-night-light.css: -------------------------------------------------------------------------------- 1 | /* Tokyo Night Light by Michaël Ball */ 2 | 3 | :root { 4 | --base00: #D5D6DB; 5 | --base01: #CBCCD1; 6 | --base02: #DFE0E5; 7 | --base03: #9699A3; 8 | --base04: #4C505E; 9 | --base05: #343B59; 10 | --base06: #1A1B26; 11 | --base07: #1A1B26; 12 | --base08: #343B58; 13 | --base09: #965027; 14 | --base0A: #166775; 15 | --base0B: #485E30; 16 | --base0C: #3E6968; 17 | --base0D: #34548A; 18 | --base0E: #5A4A78; 19 | --base0F: #8C4351; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tokyo-night-storm.css: -------------------------------------------------------------------------------- 1 | /* Tokyo Night Storm by Michaël Ball */ 2 | 3 | :root { 4 | --base00: #24283B; 5 | --base01: #16161E; 6 | --base02: #343A52; 7 | --base03: #444B6A; 8 | --base04: #787C99; 9 | --base05: #A9B1D6; 10 | --base06: #CBCCD1; 11 | --base07: #D5D6DB; 12 | --base08: #C0CAF5; 13 | --base09: #A9B1D6; 14 | --base0A: #0DB9D7; 15 | --base0B: #9ECE6A; 16 | --base0C: #B4F9F8; 17 | --base0D: #2AC3DE; 18 | --base0E: #BB9AF7; 19 | --base0F: #F7768E; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tokyo-night-terminal-dark.css: -------------------------------------------------------------------------------- 1 | /* Tokyo Night Terminal Dark by Michaël Ball */ 2 | 3 | :root { 4 | --base00: #16161E; 5 | --base01: #1A1B26; 6 | --base02: #2F3549; 7 | --base03: #444B6A; 8 | --base04: #787C99; 9 | --base05: #787C99; 10 | --base06: #CBCCD1; 11 | --base07: #D5D6DB; 12 | --base08: #F7768E; 13 | --base09: #FF9E64; 14 | --base0A: #E0AF68; 15 | --base0B: #41A6B5; 16 | --base0C: #7DCFFF; 17 | --base0D: #7AA2F7; 18 | --base0E: #BB9AF7; 19 | --base0F: #D18616; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tokyo-night-terminal-light.css: -------------------------------------------------------------------------------- 1 | /* Tokyo Night Terminal Light by Michaël Ball */ 2 | 3 | :root { 4 | --base00: #D5D6DB; 5 | --base01: #CBCCD1; 6 | --base02: #DFE0E5; 7 | --base03: #9699A3; 8 | --base04: #4C505E; 9 | --base05: #4C505E; 10 | --base06: #1A1B26; 11 | --base07: #1A1B26; 12 | --base08: #8C4351; 13 | --base09: #965027; 14 | --base0A: #8F5E15; 15 | --base0B: #33635C; 16 | --base0C: #0F4B6E; 17 | --base0D: #34548A; 18 | --base0E: #5A4A78; 19 | --base0F: #655259; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tokyo-night-terminal-storm.css: -------------------------------------------------------------------------------- 1 | /* Tokyo Night Terminal Storm by Michaël Ball */ 2 | 3 | :root { 4 | --base00: #24283B; 5 | --base01: #1A1B26; 6 | --base02: #343A52; 7 | --base03: #444B6A; 8 | --base04: #787C99; 9 | --base05: #787C99; 10 | --base06: #CBCCD1; 11 | --base07: #D5D6DB; 12 | --base08: #F7768E; 13 | --base09: #FF9E64; 14 | --base0A: #E0AF68; 15 | --base0B: #41A6B5; 16 | --base0C: #7DCFFF; 17 | --base0D: #7AA2F7; 18 | --base0E: #BB9AF7; 19 | --base0F: #D18616; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tomorrow-night-eighties.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #2d2d2d; 5 | --base01: #393939; 6 | --base02: #515151; 7 | --base03: #999999; 8 | --base04: #b4b7b4; 9 | --base05: #cccccc; 10 | --base06: #e0e0e0; 11 | --base07: #ffffff; 12 | --base08: #f2777a; 13 | --base09: #f99157; 14 | --base0A: #ffcc66; 15 | --base0B: #99cc99; 16 | --base0C: #66cccc; 17 | --base0D: #6699cc; 18 | --base0E: #cc99cc; 19 | --base0F: #a3685a; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tomorrow-night.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow Night by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #1d1f21; 5 | --base01: #282a2e; 6 | --base02: #373b41; 7 | --base03: #969896; 8 | --base04: #b4b7b4; 9 | --base05: #c5c8c6; 10 | --base06: #e0e0e0; 11 | --base07: #ffffff; 12 | --base08: #cc6666; 13 | --base09: #de935f; 14 | --base0A: #f0c674; 15 | --base0B: #b5bd68; 16 | --base0C: #8abeb7; 17 | --base0D: #81a2be; 18 | --base0E: #b294bb; 19 | --base0F: #a3685a; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tomorrow.css: -------------------------------------------------------------------------------- 1 | /* Tomorrow by Chris Kempson (http://chriskempson.com) */ 2 | 3 | :root { 4 | --base00: #ffffff; 5 | --base01: #e0e0e0; 6 | --base02: #d6d6d6; 7 | --base03: #8e908c; 8 | --base04: #969896; 9 | --base05: #4d4d4c; 10 | --base06: #282a2e; 11 | --base07: #1d1f21; 12 | --base08: #c82829; 13 | --base09: #f5871f; 14 | --base0A: #eab700; 15 | --base0B: #718c00; 16 | --base0C: #3e999f; 17 | --base0D: #4271ae; 18 | --base0E: #8959a8; 19 | --base0F: #a3685a; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-tube.css: -------------------------------------------------------------------------------- 1 | /* London Tube by Jan T. Sott */ 2 | 3 | :root { 4 | --base00: #231f20; 5 | --base01: #1c3f95; 6 | --base02: #5a5758; 7 | --base03: #737171; 8 | --base04: #959ca1; 9 | --base05: #d9d8d8; 10 | --base06: #e7e7e8; 11 | --base07: #ffffff; 12 | --base08: #ee2e24; 13 | --base09: #f386a1; 14 | --base0A: #ffd204; 15 | --base0B: #00853e; 16 | --base0C: #85cebc; 17 | --base0D: #009ddc; 18 | --base0E: #98005d; 19 | --base0F: #b06110; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-twilight.css: -------------------------------------------------------------------------------- 1 | /* Twilight by David Hart (https://github.com/hartbit) */ 2 | 3 | :root { 4 | --base00: #1e1e1e; 5 | --base01: #323537; 6 | --base02: #464b50; 7 | --base03: #5f5a60; 8 | --base04: #838184; 9 | --base05: #a7a7a7; 10 | --base06: #c3c3c3; 11 | --base07: #ffffff; 12 | --base08: #cf6a4c; 13 | --base09: #cda869; 14 | --base0A: #f9ee98; 15 | --base0B: #8f9d6a; 16 | --base0C: #afc4db; 17 | --base0D: #7587a6; 18 | --base0E: #9b859d; 19 | --base0F: #9b703f; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-unikitty-dark.css: -------------------------------------------------------------------------------- 1 | /* Unikitty Dark by Josh W Lewis (@joshwlewis) */ 2 | 3 | :root { 4 | --base00: #2e2a31; 5 | --base01: #4a464d; 6 | --base02: #666369; 7 | --base03: #838085; 8 | --base04: #9f9da2; 9 | --base05: #bcbabe; 10 | --base06: #d8d7da; 11 | --base07: #f5f4f7; 12 | --base08: #d8137f; 13 | --base09: #d65407; 14 | --base0A: #dc8a0e; 15 | --base0B: #17ad98; 16 | --base0C: #149bda; 17 | --base0D: #796af5; 18 | --base0E: #bb60ea; 19 | --base0F: #c720ca; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-unikitty-light.css: -------------------------------------------------------------------------------- 1 | /* Unikitty Light by Josh W Lewis (@joshwlewis) */ 2 | 3 | :root { 4 | --base00: #ffffff; 5 | --base01: #e1e1e2; 6 | --base02: #c4c3c5; 7 | --base03: #a7a5a8; 8 | --base04: #89878b; 9 | --base05: #6c696e; 10 | --base06: #4f4b51; 11 | --base07: #322d34; 12 | --base08: #d8137f; 13 | --base09: #d65407; 14 | --base0A: #dc8a0e; 15 | --base0B: #17ad98; 16 | --base0C: #149bda; 17 | --base0D: #775dff; 18 | --base0E: #aa17e6; 19 | --base0F: #e013d0; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-vulcan.css: -------------------------------------------------------------------------------- 1 | /* vulcan by Andrey Varfolomeev */ 2 | 3 | :root { 4 | --base00: #041523; 5 | --base01: #122339; 6 | --base02: #003552; 7 | --base03: #7a5759; 8 | --base04: #6b6977; 9 | --base05: #5b778c; 10 | --base06: #333238; 11 | --base07: #214d68; 12 | --base08: #818591; 13 | --base09: #9198a3; 14 | --base0A: #adb4b9; 15 | --base0B: #977d7c; 16 | --base0C: #977d7c; 17 | --base0D: #977d7c; 18 | --base0E: #9198a3; 19 | --base0F: #977d7c; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-windows-10-light.css: -------------------------------------------------------------------------------- 1 | /* Windows 10 Light by Fergus Collins (https://github.com/C-Fergus) */ 2 | 3 | :root { 4 | --base00: #f2f2f2; 5 | --base01: #e5e5e5; 6 | --base02: #d9d9d9; 7 | --base03: #cccccc; 8 | --base04: #ababab; 9 | --base05: #767676; 10 | --base06: #414141; 11 | --base07: #0c0c0c; 12 | --base08: #c50f1f; 13 | --base09: #f9f1a5; 14 | --base0A: #c19c00; 15 | --base0B: #13a10e; 16 | --base0C: #3a96dd; 17 | --base0D: #0037da; 18 | --base0E: #881798; 19 | --base0F: #16c60c; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-windows-10.css: -------------------------------------------------------------------------------- 1 | /* Windows 10 by Fergus Collins (https://github.com/C-Fergus) */ 2 | 3 | :root { 4 | --base00: #0c0c0c; 5 | --base01: #2f2f2f; 6 | --base02: #535353; 7 | --base03: #767676; 8 | --base04: #b9b9b9; 9 | --base05: #cccccc; 10 | --base06: #dfdfdf; 11 | --base07: #f2f2f2; 12 | --base08: #e74856; 13 | --base09: #c19c00; 14 | --base0A: #f9f1a5; 15 | --base0B: #16c60c; 16 | --base0C: #61d6d6; 17 | --base0D: #3b78ff; 18 | --base0E: #b4009e; 19 | --base0F: #13a10e; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-windows-95-light.css: -------------------------------------------------------------------------------- 1 | /* Windows 95 Light by Fergus Collins (https://github.com/C-Fergus) */ 2 | 3 | :root { 4 | --base00: #fcfcfc; 5 | --base01: #e0e0e0; 6 | --base02: #c4c4c4; 7 | --base03: #a8a8a8; 8 | --base04: #7e7e7e; 9 | --base05: #545454; 10 | --base06: #2a2a2a; 11 | --base07: #000000; 12 | --base08: #a80000; 13 | --base09: #fcfc54; 14 | --base0A: #a85400; 15 | --base0B: #00a800; 16 | --base0C: #00a8a8; 17 | --base0D: #0000a8; 18 | --base0E: #a800a8; 19 | --base0F: #54fc54; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-windows-95.css: -------------------------------------------------------------------------------- 1 | /* Windows 95 by Fergus Collins (https://github.com/C-Fergus) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #1C1C1C; 6 | --base02: #383838; 7 | --base03: #545454; 8 | --base04: #7e7e7e; 9 | --base05: #a8a8a8; 10 | --base06: #d2d2d2; 11 | --base07: #fcfcfc; 12 | --base08: #fc5454; 13 | --base09: #a85400; 14 | --base0A: #fcfc54; 15 | --base0B: #54fc54; 16 | --base0C: #54fcfc; 17 | --base0D: #5454fc; 18 | --base0E: #fc54fc; 19 | --base0F: #00a800; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-windows-highcontrast-light.css: -------------------------------------------------------------------------------- 1 | /* Windows High Contrast Light by Fergus Collins (https://github.com/C-Fergus) */ 2 | 3 | :root { 4 | --base00: #fcfcfc; 5 | --base01: #e8e8e8; 6 | --base02: #d4d4d4; 7 | --base03: #c0c0c0; 8 | --base04: #7e7e7e; 9 | --base05: #545454; 10 | --base06: #2a2a2a; 11 | --base07: #000000; 12 | --base08: #800000; 13 | --base09: #fcfc54; 14 | --base0A: #808000; 15 | --base0B: #008000; 16 | --base0C: #008080; 17 | --base0D: #000080; 18 | --base0E: #800080; 19 | --base0F: #54fc54; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-windows-highcontrast.css: -------------------------------------------------------------------------------- 1 | /* Windows High Contrast by Fergus Collins (https://github.com/C-Fergus) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #1C1C1C; 6 | --base02: #383838; 7 | --base03: #545454; 8 | --base04: #a2a2a2; 9 | --base05: #c0c0c0; 10 | --base06: #dedede; 11 | --base07: #fcfcfc; 12 | --base08: #fc5454; 13 | --base09: #808000; 14 | --base0A: #fcfc54; 15 | --base0B: #54fc54; 16 | --base0C: #54fcfc; 17 | --base0D: #5454fc; 18 | --base0E: #fc54fc; 19 | --base0F: #008000; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-windows-nt-light.css: -------------------------------------------------------------------------------- 1 | /* Windows NT Light by Fergus Collins (https://github.com/C-Fergus) */ 2 | 3 | :root { 4 | --base00: #ffffff; 5 | --base01: #eaeaea; 6 | --base02: #d5d5d5; 7 | --base03: #c0c0c0; 8 | --base04: #a0a0a0; 9 | --base05: #808080; 10 | --base06: #404040; 11 | --base07: #000000; 12 | --base08: #800000; 13 | --base09: #ffff00; 14 | --base0A: #808000; 15 | --base0B: #008000; 16 | --base0C: #008080; 17 | --base0D: #000080; 18 | --base0E: #800080; 19 | --base0F: #00ff00; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-windows-nt.css: -------------------------------------------------------------------------------- 1 | /* Windows NT by Fergus Collins (https://github.com/C-Fergus) */ 2 | 3 | :root { 4 | --base00: #000000; 5 | --base01: #2a2a2a; 6 | --base02: #555555; 7 | --base03: #808080; 8 | --base04: #a1a1a1; 9 | --base05: #c0c0c0; 10 | --base06: #e0e0e0; 11 | --base07: #ffffff; 12 | --base08: #ff0000; 13 | --base09: #808000; 14 | --base0A: #ffff00; 15 | --base0B: #00ff00; 16 | --base0C: #00ffff; 17 | --base0D: #0000ff; 18 | --base0E: #ff00ff; 19 | --base0F: #008000; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-woodland.css: -------------------------------------------------------------------------------- 1 | /* Woodland by Jay Cornwall (https://jcornwall.com) */ 2 | 3 | :root { 4 | --base00: #231e18; 5 | --base01: #302b25; 6 | --base02: #48413a; 7 | --base03: #9d8b70; 8 | --base04: #b4a490; 9 | --base05: #cabcb1; 10 | --base06: #d7c8bc; 11 | --base07: #e4d4c8; 12 | --base08: #d35c5c; 13 | --base09: #ca7f32; 14 | --base0A: #e0ac16; 15 | --base0B: #b7ba53; 16 | --base0C: #6eb958; 17 | --base0D: #88a4d3; 18 | --base0E: #bb90e2; 19 | --base0F: #b49368; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-xcode-dusk.css: -------------------------------------------------------------------------------- 1 | /* XCode Dusk by Elsa Gonsiorowski (https://github.com/gonsie) */ 2 | 3 | :root { 4 | --base00: #282B35; 5 | --base01: #3D4048; 6 | --base02: #53555D; 7 | --base03: #686A71; 8 | --base04: #7E8086; 9 | --base05: #939599; 10 | --base06: #A9AAAE; 11 | --base07: #BEBFC2; 12 | --base08: #B21889; 13 | --base09: #786DC5; 14 | --base0A: #438288; 15 | --base0B: #DF0002; 16 | --base0C: #00A0BE; 17 | --base0D: #790EAD; 18 | --base0E: #B21889; 19 | --base0F: #C77C48; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/base16/base16-zenburn.css: -------------------------------------------------------------------------------- 1 | /* Zenburn by elnawe */ 2 | 3 | :root { 4 | --base00: #383838; 5 | --base01: #404040; 6 | --base02: #606060; 7 | --base03: #6f6f6f; 8 | --base04: #808080; 9 | --base05: #dcdccc; 10 | --base06: #c0c0c0; 11 | --base07: #ffffff; 12 | --base08: #dca3a3; 13 | --base09: #dfaf8f; 14 | --base0A: #e0cf9f; 15 | --base0B: #5f7f5f; 16 | --base0C: #93e0e3; 17 | --base0D: #7cb8bb; 18 | --base0E: #dc8cc3; 19 | --base0F: #000000; 20 | } 21 | -------------------------------------------------------------------------------- /public/css/fs.go: -------------------------------------------------------------------------------- 1 | package css 2 | 3 | import "embed" 4 | 5 | //go:embed * 6 | var FS embed.FS 7 | -------------------------------------------------------------------------------- /public/css/images/construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vito/bass-loop/c14c6dabec09038ff41c53a98c140e6931d21d32/public/css/images/construction.gif -------------------------------------------------------------------------------- /public/ico/fs.go: -------------------------------------------------------------------------------- 1 | package ico 2 | 3 | import "embed" 4 | 5 | //go:embed * 6 | var FS embed.FS 7 | -------------------------------------------------------------------------------- /public/js/fs.go: -------------------------------------------------------------------------------- 1 | package js 2 | 3 | import "embed" 4 | 5 | //go:embed * 6 | var FS embed.FS 7 | -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- 1 | //go:build tools 2 | // +build tools 3 | 4 | // Track tool dependencies to prevent 'go mod tidy' from cleaning them up. 5 | package loop 6 | 7 | import _ "github.com/livebud/bud" 8 | -------------------------------------------------------------------------------- /view/Footer.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |
8 | 9 | 30 | -------------------------------------------------------------------------------- /view/Octicon.svelte: -------------------------------------------------------------------------------- 1 | 11 | 12 | {@html octicon.toSVG({ width: 16 })} 13 | 14 | 23 | -------------------------------------------------------------------------------- /view/Run.svelte: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | 32 | -------------------------------------------------------------------------------- /view/Runs.svelte: -------------------------------------------------------------------------------- 1 | 6 | 7 |
    8 | {#if runs.length == 0} 9 |
  • none
  • 10 | {/if} 11 | {#each runs as run} 12 |
  • 13 | 14 |
  • 15 | {/each} 16 |
17 | 18 | 31 | -------------------------------------------------------------------------------- /view/Title.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 |

{text}

6 | 7 | 25 | -------------------------------------------------------------------------------- /view/base16/base16-3024.js: -------------------------------------------------------------------------------- 1 | // 3024 by Jan T. Sott (http://github.com/idleberg) 2 | 3 | export const scheme = '3024'; 4 | export const author = 'Jan T. Sott (http://github.com/idleberg)'; 5 | export const vars = [ 6 | "--base00: #090300", 7 | "--base01: #3a3432", 8 | "--base02: #4a4543", 9 | "--base03: #5c5855", 10 | "--base04: #807d7c", 11 | "--base05: #a5a2a2", 12 | "--base06: #d6d5d4", 13 | "--base07: #f7f7f7", 14 | "--base08: #db2d20", 15 | "--base09: #e8bbd0", 16 | "--base0A: #fded02", 17 | "--base0B: #01a252", 18 | "--base0C: #b5e4f4", 19 | "--base0D: #01a0e4", 20 | "--base0E: #a16a94", 21 | "--base0F: #cdab53" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-apprentice.js: -------------------------------------------------------------------------------- 1 | // Apprentice by romainl 2 | 3 | export const scheme = 'apprentice'; 4 | export const author = 'romainl'; 5 | export const vars = [ 6 | "--base00: #262626", 7 | "--base01: #303030", 8 | "--base02: #333333", 9 | "--base03: #6C6C6C", 10 | "--base04: #787878", 11 | "--base05: #BCBCBC", 12 | "--base06: #C9C9C9", 13 | "--base07: #FFFFFF", 14 | "--base08: #5F8787", 15 | "--base09: #FF8700", 16 | "--base0A: #5F8787", 17 | "--base0B: #87AF87", 18 | "--base0C: #5F875F", 19 | "--base0D: #FFFFAF", 20 | "--base0E: #87AFD7", 21 | "--base0F: #5F87AF" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-ashes.js: -------------------------------------------------------------------------------- 1 | // Ashes by Jannik Siebert (https://github.com/janniks) 2 | 3 | export const scheme = 'ashes'; 4 | export const author = 'Jannik Siebert (https://github.com/janniks)'; 5 | export const vars = [ 6 | "--base00: #1C2023", 7 | "--base01: #393F45", 8 | "--base02: #565E65", 9 | "--base03: #747C84", 10 | "--base04: #ADB3BA", 11 | "--base05: #C7CCD1", 12 | "--base06: #DFE2E5", 13 | "--base07: #F3F4F5", 14 | "--base08: #C7AE95", 15 | "--base09: #C7C795", 16 | "--base0A: #AEC795", 17 | "--base0B: #95C7AE", 18 | "--base0C: #95AEC7", 19 | "--base0D: #AE95C7", 20 | "--base0E: #C795AE", 21 | "--base0F: #C79595" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-atlas.js: -------------------------------------------------------------------------------- 1 | // Atlas by Alex Lende (https://ajlende.com) 2 | 3 | export const scheme = 'atlas'; 4 | export const author = 'Alex Lende (https://ajlende.com)'; 5 | export const vars = [ 6 | "--base00: #002635", 7 | "--base01: #00384d", 8 | "--base02: #517F8D", 9 | "--base03: #6C8B91", 10 | "--base04: #869696", 11 | "--base05: #a1a19a", 12 | "--base06: #e6e6dc", 13 | "--base07: #fafaf8", 14 | "--base08: #ff5a67", 15 | "--base09: #f08e48", 16 | "--base0A: #ffcc1b", 17 | "--base0B: #7fc06e", 18 | "--base0C: #14747e", 19 | "--base0D: #5dd7b9", 20 | "--base0E: #9a70a4", 21 | "--base0F: #c43060" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-bespin.js: -------------------------------------------------------------------------------- 1 | // Bespin by Jan T. Sott 2 | 3 | export const scheme = 'bespin'; 4 | export const author = 'Jan T. Sott'; 5 | export const vars = [ 6 | "--base00: #28211c", 7 | "--base01: #36312e", 8 | "--base02: #5e5d5c", 9 | "--base03: #666666", 10 | "--base04: #797977", 11 | "--base05: #8a8986", 12 | "--base06: #9d9b97", 13 | "--base07: #baae9e", 14 | "--base08: #cf6a4c", 15 | "--base09: #cf7d34", 16 | "--base0A: #f9ee98", 17 | "--base0B: #54be0d", 18 | "--base0C: #afc4db", 19 | "--base0D: #5ea6ea", 20 | "--base0E: #9b859d", 21 | "--base0F: #937121" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-bright.js: -------------------------------------------------------------------------------- 1 | // Bright by Chris Kempson (http://chriskempson.com) 2 | 3 | export const scheme = 'bright'; 4 | export const author = 'Chris Kempson (http://chriskempson.com)'; 5 | export const vars = [ 6 | "--base00: #000000", 7 | "--base01: #303030", 8 | "--base02: #505050", 9 | "--base03: #b0b0b0", 10 | "--base04: #d0d0d0", 11 | "--base05: #e0e0e0", 12 | "--base06: #f5f5f5", 13 | "--base07: #ffffff", 14 | "--base08: #fb0120", 15 | "--base09: #fc6d24", 16 | "--base0A: #fda331", 17 | "--base0B: #a1c659", 18 | "--base0C: #76c7b7", 19 | "--base0D: #6fb3d2", 20 | "--base0E: #d381c3", 21 | "--base0F: #be643c" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-catppuccin.js: -------------------------------------------------------------------------------- 1 | // Catppuccin by nbn22385 2 | 3 | export const scheme = 'catppuccin'; 4 | export const author = 'nbn22385'; 5 | export const vars = [ 6 | "--base00: #1E1E2E", 7 | "--base01: #302D41", 8 | "--base02: #302D41", 9 | "--base03: #575268", 10 | "--base04: #575268", 11 | "--base05: #D9E0EE", 12 | "--base06: #C9CBFF", 13 | "--base07: #F5E0DC", 14 | "--base08: #F28FAD", 15 | "--base09: #E8A2AF", 16 | "--base0A: #FAE3B0", 17 | "--base0B: #ABE9B3", 18 | "--base0C: #89DCEB", 19 | "--base0D: #96CDFB", 20 | "--base0E: #DDB6F2", 21 | "--base0F: #DDB6F2" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-chalk.js: -------------------------------------------------------------------------------- 1 | // Chalk by Chris Kempson (http://chriskempson.com) 2 | 3 | export const scheme = 'chalk'; 4 | export const author = 'Chris Kempson (http://chriskempson.com)'; 5 | export const vars = [ 6 | "--base00: #151515", 7 | "--base01: #202020", 8 | "--base02: #303030", 9 | "--base03: #505050", 10 | "--base04: #b0b0b0", 11 | "--base05: #d0d0d0", 12 | "--base06: #e0e0e0", 13 | "--base07: #f5f5f5", 14 | "--base08: #fb9fb1", 15 | "--base09: #eda987", 16 | "--base0A: #ddb26f", 17 | "--base0B: #acc267", 18 | "--base0C: #12cfc0", 19 | "--base0D: #6fc2ef", 20 | "--base0E: #e1a3ee", 21 | "--base0F: #deaf8f" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-codeschool.js: -------------------------------------------------------------------------------- 1 | // Codeschool by blockloop 2 | 3 | export const scheme = 'codeschool'; 4 | export const author = 'blockloop'; 5 | export const vars = [ 6 | "--base00: #232c31", 7 | "--base01: #1c3657", 8 | "--base02: #2a343a", 9 | "--base03: #3f4944", 10 | "--base04: #84898c", 11 | "--base05: #9ea7a6", 12 | "--base06: #a7cfa3", 13 | "--base07: #b5d8f6", 14 | "--base08: #2a5491", 15 | "--base09: #43820d", 16 | "--base0A: #a03b1e", 17 | "--base0B: #237986", 18 | "--base0C: #b02f30", 19 | "--base0D: #484d79", 20 | "--base0E: #c59820", 21 | "--base0F: #c98344" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-colors.js: -------------------------------------------------------------------------------- 1 | // Colors by mrmrs (http://clrs.cc) 2 | 3 | export const scheme = 'colors'; 4 | export const author = 'mrmrs (http://clrs.cc)'; 5 | export const vars = [ 6 | "--base00: #111111", 7 | "--base01: #333333", 8 | "--base02: #555555", 9 | "--base03: #777777", 10 | "--base04: #999999", 11 | "--base05: #bbbbbb", 12 | "--base06: #dddddd", 13 | "--base07: #ffffff", 14 | "--base08: #ff4136", 15 | "--base09: #ff851b", 16 | "--base0A: #ffdc00", 17 | "--base0B: #2ecc40", 18 | "--base0C: #7fdbff", 19 | "--base0D: #0074d9", 20 | "--base0E: #b10dc9", 21 | "--base0F: #85144b" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-cupcake.js: -------------------------------------------------------------------------------- 1 | // Cupcake by Chris Kempson (http://chriskempson.com) 2 | 3 | export const scheme = 'cupcake'; 4 | export const author = 'Chris Kempson (http://chriskempson.com)'; 5 | export const vars = [ 6 | "--base00: #fbf1f2", 7 | "--base01: #f2f1f4", 8 | "--base02: #d8d5dd", 9 | "--base03: #bfb9c6", 10 | "--base04: #a59daf", 11 | "--base05: #8b8198", 12 | "--base06: #72677E", 13 | "--base07: #585062", 14 | "--base08: #D57E85", 15 | "--base09: #EBB790", 16 | "--base0A: #DCB16C", 17 | "--base0B: #A3B367", 18 | "--base0C: #69A9A7", 19 | "--base0D: #7297B9", 20 | "--base0E: #BB99B4", 21 | "--base0F: #BAA58C" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-cupertino.js: -------------------------------------------------------------------------------- 1 | // Cupertino by Defman21 2 | 3 | export const scheme = 'cupertino'; 4 | export const author = 'Defman21'; 5 | export const vars = [ 6 | "--base00: #ffffff", 7 | "--base01: #c0c0c0", 8 | "--base02: #c0c0c0", 9 | "--base03: #808080", 10 | "--base04: #808080", 11 | "--base05: #404040", 12 | "--base06: #404040", 13 | "--base07: #5e5e5e", 14 | "--base08: #c41a15", 15 | "--base09: #eb8500", 16 | "--base0A: #826b28", 17 | "--base0B: #007400", 18 | "--base0C: #318495", 19 | "--base0D: #0000ff", 20 | "--base0E: #a90d91", 21 | "--base0F: #826b28" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-darcula.js: -------------------------------------------------------------------------------- 1 | // Darcula by jetbrains 2 | 3 | export const scheme = 'darcula'; 4 | export const author = 'jetbrains'; 5 | export const vars = [ 6 | "--base00: #2b2b2b", 7 | "--base01: #323232", 8 | "--base02: #323232", 9 | "--base03: #606366", 10 | "--base04: #a4a3a3", 11 | "--base05: #a9b7c6", 12 | "--base06: #ffc66d", 13 | "--base07: #ffffff", 14 | "--base08: #4eade5", 15 | "--base09: #689757", 16 | "--base0A: #bbb529", 17 | "--base0B: #6a8759", 18 | "--base0C: #629755", 19 | "--base0D: #9876aa", 20 | "--base0E: #cc7832", 21 | "--base0F: #808080" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-dirtysea.js: -------------------------------------------------------------------------------- 1 | // dirtysea by Kahlil (Kal) Hodgson 2 | 3 | export const scheme = 'dirtysea'; 4 | export const author = 'Kahlil (Kal) Hodgson'; 5 | export const vars = [ 6 | "--base00: #e0e0e0", 7 | "--base01: #d0dad0", 8 | "--base02: #d0d0d0", 9 | "--base03: #707070", 10 | "--base04: #202020", 11 | "--base05: #000000", 12 | "--base06: #f8f8f8", 13 | "--base07: #c4d9c4", 14 | "--base08: #840000", 15 | "--base09: #006565", 16 | "--base0A: #755B00", 17 | "--base0B: #730073", 18 | "--base0C: #755B00", 19 | "--base0D: #007300", 20 | "--base0E: #000090", 21 | "--base0F: #755B00" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-eighties.js: -------------------------------------------------------------------------------- 1 | // Eighties by Chris Kempson (http://chriskempson.com) 2 | 3 | export const scheme = 'eighties'; 4 | export const author = 'Chris Kempson (http://chriskempson.com)'; 5 | export const vars = [ 6 | "--base00: #2d2d2d", 7 | "--base01: #393939", 8 | "--base02: #515151", 9 | "--base03: #747369", 10 | "--base04: #a09f93", 11 | "--base05: #d3d0c8", 12 | "--base06: #e8e6df", 13 | "--base07: #f2f0ec", 14 | "--base08: #f2777a", 15 | "--base09: #f99157", 16 | "--base0A: #ffcc66", 17 | "--base0B: #99cc99", 18 | "--base0C: #66cccc", 19 | "--base0D: #6699cc", 20 | "--base0E: #cc99cc", 21 | "--base0F: #d27b53" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-equilibrium-dark.js: -------------------------------------------------------------------------------- 1 | // Equilibrium Dark by Carlo Abelli 2 | 3 | export const scheme = 'equilibrium-dark'; 4 | export const author = 'Carlo Abelli'; 5 | export const vars = [ 6 | "--base00: #0c1118", 7 | "--base01: #181c22", 8 | "--base02: #22262d", 9 | "--base03: #7b776e", 10 | "--base04: #949088", 11 | "--base05: #afaba2", 12 | "--base06: #cac6bd", 13 | "--base07: #e7e2d9", 14 | "--base08: #f04339", 15 | "--base09: #df5923", 16 | "--base0A: #bb8801", 17 | "--base0B: #7f8b00", 18 | "--base0C: #00948b", 19 | "--base0D: #008dd1", 20 | "--base0E: #6a7fd2", 21 | "--base0F: #e3488e" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-equilibrium-gray-dark.js: -------------------------------------------------------------------------------- 1 | // Equilibrium Gray Dark by Carlo Abelli 2 | 3 | export const scheme = 'equilibrium-gray-dark'; 4 | export const author = 'Carlo Abelli'; 5 | export const vars = [ 6 | "--base00: #111111", 7 | "--base01: #1b1b1b", 8 | "--base02: #262626", 9 | "--base03: #777777", 10 | "--base04: #919191", 11 | "--base05: #ababab", 12 | "--base06: #c6c6c6", 13 | "--base07: #e2e2e2", 14 | "--base08: #f04339", 15 | "--base09: #df5923", 16 | "--base0A: #bb8801", 17 | "--base0B: #7f8b00", 18 | "--base0C: #00948b", 19 | "--base0D: #008dd1", 20 | "--base0E: #6a7fd2", 21 | "--base0F: #e3488e" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-equilibrium-gray-light.js: -------------------------------------------------------------------------------- 1 | // Equilibrium Gray Light by Carlo Abelli 2 | 3 | export const scheme = 'equilibrium-gray-light'; 4 | export const author = 'Carlo Abelli'; 5 | export const vars = [ 6 | "--base00: #f1f1f1", 7 | "--base01: #e2e2e2", 8 | "--base02: #d4d4d4", 9 | "--base03: #777777", 10 | "--base04: #5e5e5e", 11 | "--base05: #474747", 12 | "--base06: #303030", 13 | "--base07: #1b1b1b", 14 | "--base08: #d02023", 15 | "--base09: #bf3e05", 16 | "--base0A: #9d6f00", 17 | "--base0B: #637200", 18 | "--base0C: #007a72", 19 | "--base0D: #0073b5", 20 | "--base0E: #4e66b6", 21 | "--base0F: #c42775" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-equilibrium-light.js: -------------------------------------------------------------------------------- 1 | // Equilibrium Light by Carlo Abelli 2 | 3 | export const scheme = 'equilibrium-light'; 4 | export const author = 'Carlo Abelli'; 5 | export const vars = [ 6 | "--base00: #f5f0e7", 7 | "--base01: #e7e2d9", 8 | "--base02: #d8d4cb", 9 | "--base03: #73777f", 10 | "--base04: #5a5f66", 11 | "--base05: #43474e", 12 | "--base06: #2c3138", 13 | "--base07: #181c22", 14 | "--base08: #d02023", 15 | "--base09: #bf3e05", 16 | "--base0A: #9d6f00", 17 | "--base0B: #637200", 18 | "--base0C: #007a72", 19 | "--base0D: #0073b5", 20 | "--base0E: #4e66b6", 21 | "--base0F: #c42775" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-eva-dim.js: -------------------------------------------------------------------------------- 1 | // Eva Dim by kjakapat (https://github.com/kjakapat) 2 | 3 | export const scheme = 'eva-dim'; 4 | export const author = 'kjakapat (https://github.com/kjakapat)'; 5 | export const vars = [ 6 | "--base00: #2a3b4d", 7 | "--base01: #3d566f", 8 | "--base02: #4b6988", 9 | "--base03: #55799c", 10 | "--base04: #7e90a3", 11 | "--base05: #9fa2a6", 12 | "--base06: #d6d7d9", 13 | "--base07: #ffffff", 14 | "--base08: #c4676c", 15 | "--base09: #ff9966", 16 | "--base0A: #cfd05d", 17 | "--base0B: #5de561", 18 | "--base0C: #4b8f77", 19 | "--base0D: #1ae1dc", 20 | "--base0E: #9c6cd3", 21 | "--base0F: #bb64a9" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-eva.js: -------------------------------------------------------------------------------- 1 | // Eva by kjakapat (https://github.com/kjakapat) 2 | 3 | export const scheme = 'eva'; 4 | export const author = 'kjakapat (https://github.com/kjakapat)'; 5 | export const vars = [ 6 | "--base00: #2a3b4d", 7 | "--base01: #3d566f", 8 | "--base02: #4b6988", 9 | "--base03: #55799c", 10 | "--base04: #7e90a3", 11 | "--base05: #9fa2a6", 12 | "--base06: #d6d7d9", 13 | "--base07: #ffffff", 14 | "--base08: #c4676c", 15 | "--base09: #ff9966", 16 | "--base0A: #ffff66", 17 | "--base0B: #66ff66", 18 | "--base0C: #4b8f77", 19 | "--base0D: #15f4ee", 20 | "--base0E: #9c6cd3", 21 | "--base0F: #bb64a9" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-flat.js: -------------------------------------------------------------------------------- 1 | // Flat by Chris Kempson (http://chriskempson.com) 2 | 3 | export const scheme = 'flat'; 4 | export const author = 'Chris Kempson (http://chriskempson.com)'; 5 | export const vars = [ 6 | "--base00: #2C3E50", 7 | "--base01: #34495E", 8 | "--base02: #7F8C8D", 9 | "--base03: #95A5A6", 10 | "--base04: #BDC3C7", 11 | "--base05: #e0e0e0", 12 | "--base06: #f5f5f5", 13 | "--base07: #ECF0F1", 14 | "--base08: #E74C3C", 15 | "--base09: #E67E22", 16 | "--base0A: #F1C40F", 17 | "--base0B: #2ECC71", 18 | "--base0C: #1ABC9C", 19 | "--base0D: #3498DB", 20 | "--base0E: #9B59B6", 21 | "--base0F: #be643c" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-framer.js: -------------------------------------------------------------------------------- 1 | // Framer by Framer (Maintained by Jesse Hoyos) 2 | 3 | export const scheme = 'framer'; 4 | export const author = 'Framer (Maintained by Jesse Hoyos)'; 5 | export const vars = [ 6 | "--base00: #181818", 7 | "--base01: #151515", 8 | "--base02: #464646", 9 | "--base03: #747474", 10 | "--base04: #B9B9B9", 11 | "--base05: #D0D0D0", 12 | "--base06: #E8E8E8", 13 | "--base07: #EEEEEE", 14 | "--base08: #FD886B", 15 | "--base09: #FC4769", 16 | "--base0A: #FECB6E", 17 | "--base0B: #32CCDC", 18 | "--base0C: #ACDDFD", 19 | "--base0D: #20BCFC", 20 | "--base0E: #BA8CFC", 21 | "--base0F: #B15F4A" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-fruit-soda.js: -------------------------------------------------------------------------------- 1 | // Fruit Soda by jozip 2 | 3 | export const scheme = 'fruit-soda'; 4 | export const author = 'jozip'; 5 | export const vars = [ 6 | "--base00: #f1ecf1", 7 | "--base01: #e0dee0", 8 | "--base02: #d8d5d5", 9 | "--base03: #b5b4b6", 10 | "--base04: #979598", 11 | "--base05: #515151", 12 | "--base06: #474545", 13 | "--base07: #2d2c2c", 14 | "--base08: #fe3e31", 15 | "--base09: #fe6d08", 16 | "--base0A: #f7e203", 17 | "--base0B: #47f74c", 18 | "--base0C: #0f9cfd", 19 | "--base0D: #2931df", 20 | "--base0E: #611fce", 21 | "--base0F: #b16f40" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-github.js: -------------------------------------------------------------------------------- 1 | // Github by Defman21 2 | 3 | export const scheme = 'github'; 4 | export const author = 'Defman21'; 5 | export const vars = [ 6 | "--base00: #ffffff", 7 | "--base01: #f5f5f5", 8 | "--base02: #c8c8fa", 9 | "--base03: #969896", 10 | "--base04: #e8e8e8", 11 | "--base05: #333333", 12 | "--base06: #ffffff", 13 | "--base07: #ffffff", 14 | "--base08: #ed6a43", 15 | "--base09: #0086b3", 16 | "--base0A: #795da3", 17 | "--base0B: #183691", 18 | "--base0C: #183691", 19 | "--base0D: #795da3", 20 | "--base0E: #a71d5d", 21 | "--base0F: #333333" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-hardcore.js: -------------------------------------------------------------------------------- 1 | // Hardcore by Chris Caller 2 | 3 | export const scheme = 'hardcore'; 4 | export const author = 'Chris Caller'; 5 | export const vars = [ 6 | "--base00: #212121", 7 | "--base01: #303030", 8 | "--base02: #353535", 9 | "--base03: #4A4A4A", 10 | "--base04: #707070", 11 | "--base05: #cdcdcd", 12 | "--base06: #e5e5e5", 13 | "--base07: #ffffff", 14 | "--base08: #f92672", 15 | "--base09: #fd971f", 16 | "--base0A: #e6db74", 17 | "--base0B: #a6e22e", 18 | "--base0C: #708387", 19 | "--base0D: #66d9ef", 20 | "--base0E: #9e6ffe", 21 | "--base0F: #e8b882" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-heetch-light.js: -------------------------------------------------------------------------------- 1 | // Heetch Light by Geoffrey Teale (tealeg@gmail.com) 2 | 3 | export const scheme = 'heetch-light'; 4 | export const author = 'Geoffrey Teale (tealeg@gmail.com)'; 5 | export const vars = [ 6 | "--base00: #feffff", 7 | "--base01: #392551", 8 | "--base02: #7b6d8b", 9 | "--base03: #9c92a8", 10 | "--base04: #ddd6e5", 11 | "--base05: #5a496e", 12 | "--base06: #470546", 13 | "--base07: #190134", 14 | "--base08: #27d9d5", 15 | "--base09: #bdb6c5", 16 | "--base0A: #5ba2b6", 17 | "--base0B: #f80059", 18 | "--base0C: #c33678", 19 | "--base0D: #47f9f5", 20 | "--base0E: #bd0152", 21 | "--base0F: #dedae2" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-heetch.js: -------------------------------------------------------------------------------- 1 | // Heetch Dark by Geoffrey Teale (tealeg@gmail.com) 2 | 3 | export const scheme = 'heetch'; 4 | export const author = 'Geoffrey Teale (tealeg@gmail.com)'; 5 | export const vars = [ 6 | "--base00: #190134", 7 | "--base01: #392551", 8 | "--base02: #5A496E", 9 | "--base03: #7B6D8B", 10 | "--base04: #9C92A8", 11 | "--base05: #BDB6C5", 12 | "--base06: #DEDAE2", 13 | "--base07: #FEFFFF", 14 | "--base08: #27D9D5", 15 | "--base09: #5BA2B6", 16 | "--base0A: #8F6C97", 17 | "--base0B: #C33678", 18 | "--base0C: #F80059", 19 | "--base0D: #BD0152", 20 | "--base0E: #82034C", 21 | "--base0F: #470546" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-helios.js: -------------------------------------------------------------------------------- 1 | // Helios by Alex Meyer (https://github.com/reyemxela) 2 | 3 | export const scheme = 'helios'; 4 | export const author = 'Alex Meyer (https://github.com/reyemxela)'; 5 | export const vars = [ 6 | "--base00: #1d2021", 7 | "--base01: #383c3e", 8 | "--base02: #53585b", 9 | "--base03: #6f7579", 10 | "--base04: #cdcdcd", 11 | "--base05: #d5d5d5", 12 | "--base06: #dddddd", 13 | "--base07: #e5e5e5", 14 | "--base08: #d72638", 15 | "--base09: #eb8413", 16 | "--base0A: #f19d1a", 17 | "--base0B: #88b92d", 18 | "--base0C: #1ba595", 19 | "--base0D: #1e8bac", 20 | "--base0E: #be4264", 21 | "--base0F: #c85e0d" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-hopscotch.js: -------------------------------------------------------------------------------- 1 | // Hopscotch by Jan T. Sott 2 | 3 | export const scheme = 'hopscotch'; 4 | export const author = 'Jan T. Sott'; 5 | export const vars = [ 6 | "--base00: #322931", 7 | "--base01: #433b42", 8 | "--base02: #5c545b", 9 | "--base03: #797379", 10 | "--base04: #989498", 11 | "--base05: #b9b5b8", 12 | "--base06: #d5d3d5", 13 | "--base07: #ffffff", 14 | "--base08: #dd464c", 15 | "--base09: #fd8b19", 16 | "--base0A: #fdcc59", 17 | "--base0B: #8fc13e", 18 | "--base0C: #149b93", 19 | "--base0D: #1290bf", 20 | "--base0E: #c85e7c", 21 | "--base0F: #b33508" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-humanoid-dark.js: -------------------------------------------------------------------------------- 1 | // Humanoid dark by Thomas (tasmo) Friese 2 | 3 | export const scheme = 'humanoid-dark'; 4 | export const author = 'Thomas (tasmo) Friese'; 5 | export const vars = [ 6 | "--base00: #232629", 7 | "--base01: #333b3d", 8 | "--base02: #484e54", 9 | "--base03: #60615d", 10 | "--base04: #c0c0bd", 11 | "--base05: #f8f8f2", 12 | "--base06: #fcfcf6", 13 | "--base07: #fcfcfc", 14 | "--base08: #f11235", 15 | "--base09: #ff9505", 16 | "--base0A: #ffb627", 17 | "--base0B: #02d849", 18 | "--base0C: #0dd9d6", 19 | "--base0D: #00a6fb", 20 | "--base0E: #f15ee3", 21 | "--base0F: #b27701" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-humanoid-light.js: -------------------------------------------------------------------------------- 1 | // Humanoid light by Thomas (tasmo) Friese 2 | 3 | export const scheme = 'humanoid-light'; 4 | export const author = 'Thomas (tasmo) Friese'; 5 | export const vars = [ 6 | "--base00: #f8f8f2", 7 | "--base01: #efefe9", 8 | "--base02: #deded8", 9 | "--base03: #c0c0bd", 10 | "--base04: #60615d", 11 | "--base05: #232629", 12 | "--base06: #2f3337", 13 | "--base07: #070708", 14 | "--base08: #b0151a", 15 | "--base09: #ff3d00", 16 | "--base0A: #ffb627", 17 | "--base0B: #388e3c", 18 | "--base0C: #008e8e", 19 | "--base0D: #0082c9", 20 | "--base0E: #700f98", 21 | "--base0F: #b27701" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-ia-dark.js: -------------------------------------------------------------------------------- 1 | // iA Dark by iA Inc. (modified by aramisgithub) 2 | 3 | export const scheme = 'ia-dark'; 4 | export const author = 'iA Inc. (modified by aramisgithub)'; 5 | export const vars = [ 6 | "--base00: #1a1a1a", 7 | "--base01: #222222", 8 | "--base02: #1d414d", 9 | "--base03: #767676", 10 | "--base04: #b8b8b8", 11 | "--base05: #cccccc", 12 | "--base06: #e8e8e8", 13 | "--base07: #f8f8f8", 14 | "--base08: #d88568", 15 | "--base09: #d86868", 16 | "--base0A: #b99353", 17 | "--base0B: #83a471", 18 | "--base0C: #7c9cae", 19 | "--base0D: #8eccdd", 20 | "--base0E: #b98eb2", 21 | "--base0F: #8b6c37" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-ia-light.js: -------------------------------------------------------------------------------- 1 | // iA Light by iA Inc. (modified by aramisgithub) 2 | 3 | export const scheme = 'ia-light'; 4 | export const author = 'iA Inc. (modified by aramisgithub)'; 5 | export const vars = [ 6 | "--base00: #f6f6f6", 7 | "--base01: #dedede", 8 | "--base02: #bde5f2", 9 | "--base03: #898989", 10 | "--base04: #767676", 11 | "--base05: #181818", 12 | "--base06: #e8e8e8", 13 | "--base07: #f8f8f8", 14 | "--base08: #9c5a02", 15 | "--base09: #c43e18", 16 | "--base0A: #c48218", 17 | "--base0B: #38781c", 18 | "--base0C: #2d6bb1", 19 | "--base0D: #48bac2", 20 | "--base0E: #a94598", 21 | "--base0F: #8b6c37" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-icy.js: -------------------------------------------------------------------------------- 1 | // Icy Dark by icyphox (https://icyphox.ga) 2 | 3 | export const scheme = 'icy'; 4 | export const author = 'icyphox (https://icyphox.ga)'; 5 | export const vars = [ 6 | "--base00: #021012", 7 | "--base01: #031619", 8 | "--base02: #041f23", 9 | "--base03: #052e34", 10 | "--base04: #064048", 11 | "--base05: #095b67", 12 | "--base06: #0c7c8c", 13 | "--base07: #109cb0", 14 | "--base08: #16c1d9", 15 | "--base09: #b3ebf2", 16 | "--base0A: #80deea", 17 | "--base0B: #4dd0e1", 18 | "--base0C: #26c6da", 19 | "--base0D: #00bcd4", 20 | "--base0E: #00acc1", 21 | "--base0F: #0097a7" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-isotope.js: -------------------------------------------------------------------------------- 1 | // Isotope by Jan T. Sott 2 | 3 | export const scheme = 'isotope'; 4 | export const author = 'Jan T. Sott'; 5 | export const vars = [ 6 | "--base00: #000000", 7 | "--base01: #404040", 8 | "--base02: #606060", 9 | "--base03: #808080", 10 | "--base04: #c0c0c0", 11 | "--base05: #d0d0d0", 12 | "--base06: #e0e0e0", 13 | "--base07: #ffffff", 14 | "--base08: #ff0000", 15 | "--base09: #ff9900", 16 | "--base0A: #ff0099", 17 | "--base0B: #33ff00", 18 | "--base0C: #00ffff", 19 | "--base0D: #0066ff", 20 | "--base0E: #cc00ff", 21 | "--base0F: #3300ff" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-kimber.js: -------------------------------------------------------------------------------- 1 | // Kimber by Mishka Nguyen (https://github.com/akhsiM) 2 | 3 | export const scheme = 'kimber'; 4 | export const author = 'Mishka Nguyen (https://github.com/akhsiM)'; 5 | export const vars = [ 6 | "--base00: #222222", 7 | "--base01: #313131", 8 | "--base02: #555D55", 9 | "--base03: #644646", 10 | "--base04: #5A5A5A", 11 | "--base05: #DEDEE7", 12 | "--base06: #C3C3B4", 13 | "--base07: #FFFFE6", 14 | "--base08: #C88C8C", 15 | "--base09: #476C88", 16 | "--base0A: #D8B56D", 17 | "--base0B: #99C899", 18 | "--base0C: #78B4B4", 19 | "--base0D: #537C9C", 20 | "--base0E: #86CACD", 21 | "--base0F: #704F4F" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-materia.js: -------------------------------------------------------------------------------- 1 | // Materia by Defman21 2 | 3 | export const scheme = 'materia'; 4 | export const author = 'Defman21'; 5 | export const vars = [ 6 | "--base00: #263238", 7 | "--base01: #2C393F", 8 | "--base02: #37474F", 9 | "--base03: #707880", 10 | "--base04: #C9CCD3", 11 | "--base05: #CDD3DE", 12 | "--base06: #D5DBE5", 13 | "--base07: #FFFFFF", 14 | "--base08: #EC5F67", 15 | "--base09: #EA9560", 16 | "--base0A: #FFCC00", 17 | "--base0B: #8BD649", 18 | "--base0C: #80CBC4", 19 | "--base0D: #89DDFF", 20 | "--base0E: #82AAFF", 21 | "--base0F: #EC5F67" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-material-darker.js: -------------------------------------------------------------------------------- 1 | // Material Darker by Nate Peterson 2 | 3 | export const scheme = 'material-darker'; 4 | export const author = 'Nate Peterson'; 5 | export const vars = [ 6 | "--base00: #212121", 7 | "--base01: #303030", 8 | "--base02: #353535", 9 | "--base03: #4A4A4A", 10 | "--base04: #B2CCD6", 11 | "--base05: #EEFFFF", 12 | "--base06: #EEFFFF", 13 | "--base07: #FFFFFF", 14 | "--base08: #F07178", 15 | "--base09: #F78C6C", 16 | "--base0A: #FFCB6B", 17 | "--base0B: #C3E88D", 18 | "--base0C: #89DDFF", 19 | "--base0D: #82AAFF", 20 | "--base0E: #C792EA", 21 | "--base0F: #FF5370" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-material-lighter.js: -------------------------------------------------------------------------------- 1 | // Material Lighter by Nate Peterson 2 | 3 | export const scheme = 'material-lighter'; 4 | export const author = 'Nate Peterson'; 5 | export const vars = [ 6 | "--base00: #FAFAFA", 7 | "--base01: #E7EAEC", 8 | "--base02: #CCEAE7", 9 | "--base03: #CCD7DA", 10 | "--base04: #8796B0", 11 | "--base05: #80CBC4", 12 | "--base06: #80CBC4", 13 | "--base07: #FFFFFF", 14 | "--base08: #FF5370", 15 | "--base09: #F76D47", 16 | "--base0A: #FFB62C", 17 | "--base0B: #91B859", 18 | "--base0C: #39ADB5", 19 | "--base0D: #6182B8", 20 | "--base0E: #7C4DFF", 21 | "--base0F: #E53935" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-material-palenight.js: -------------------------------------------------------------------------------- 1 | // Material Palenight by Nate Peterson 2 | 3 | export const scheme = 'material-palenight'; 4 | export const author = 'Nate Peterson'; 5 | export const vars = [ 6 | "--base00: #292D3E", 7 | "--base01: #444267", 8 | "--base02: #32374D", 9 | "--base03: #676E95", 10 | "--base04: #8796B0", 11 | "--base05: #959DCB", 12 | "--base06: #959DCB", 13 | "--base07: #FFFFFF", 14 | "--base08: #F07178", 15 | "--base09: #F78C6C", 16 | "--base0A: #FFCB6B", 17 | "--base0B: #C3E88D", 18 | "--base0C: #89DDFF", 19 | "--base0D: #82AAFF", 20 | "--base0E: #C792EA", 21 | "--base0F: #FF5370" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-material-vivid.js: -------------------------------------------------------------------------------- 1 | // Material Vivid by joshyrobot 2 | 3 | export const scheme = 'material-vivid'; 4 | export const author = 'joshyrobot'; 5 | export const vars = [ 6 | "--base00: #202124", 7 | "--base01: #27292c", 8 | "--base02: #323639", 9 | "--base03: #44464d", 10 | "--base04: #676c71", 11 | "--base05: #80868b", 12 | "--base06: #9e9e9e", 13 | "--base07: #ffffff", 14 | "--base08: #f44336", 15 | "--base09: #ff9800", 16 | "--base0A: #ffeb3b", 17 | "--base0B: #00e676", 18 | "--base0C: #00bcd4", 19 | "--base0D: #2196f3", 20 | "--base0E: #673ab7", 21 | "--base0F: #8d6e63" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-material.js: -------------------------------------------------------------------------------- 1 | // Material by Nate Peterson 2 | 3 | export const scheme = 'material'; 4 | export const author = 'Nate Peterson'; 5 | export const vars = [ 6 | "--base00: #263238", 7 | "--base01: #2E3C43", 8 | "--base02: #314549", 9 | "--base03: #546E7A", 10 | "--base04: #B2CCD6", 11 | "--base05: #EEFFFF", 12 | "--base06: #EEFFFF", 13 | "--base07: #FFFFFF", 14 | "--base08: #F07178", 15 | "--base09: #F78C6C", 16 | "--base0A: #FFCB6B", 17 | "--base0B: #C3E88D", 18 | "--base0C: #89DDFF", 19 | "--base0D: #82AAFF", 20 | "--base0E: #C792EA", 21 | "--base0F: #FF5370" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-mellow-purple.js: -------------------------------------------------------------------------------- 1 | // Mellow Purple by gidsi 2 | 3 | export const scheme = 'mellow-purple'; 4 | export const author = 'gidsi'; 5 | export const vars = [ 6 | "--base00: #1e0528", 7 | "--base01: #1A092D", 8 | "--base02: #331354", 9 | "--base03: #320f55", 10 | "--base04: #873582", 11 | "--base05: #ffeeff", 12 | "--base06: #ffeeff", 13 | "--base07: #f8c0ff", 14 | "--base08: #00d9e9", 15 | "--base09: #aa00a3", 16 | "--base0A: #955ae7", 17 | "--base0B: #05cb0d", 18 | "--base0C: #b900b1", 19 | "--base0D: #550068", 20 | "--base0E: #8991bb", 21 | "--base0F: #4d6fff" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-mexico-light.js: -------------------------------------------------------------------------------- 1 | // Mexico Light by Sheldon Johnson 2 | 3 | export const scheme = 'mexico-light'; 4 | export const author = 'Sheldon Johnson'; 5 | export const vars = [ 6 | "--base00: #f8f8f8", 7 | "--base01: #e8e8e8", 8 | "--base02: #d8d8d8", 9 | "--base03: #b8b8b8", 10 | "--base04: #585858", 11 | "--base05: #383838", 12 | "--base06: #282828", 13 | "--base07: #181818", 14 | "--base08: #ab4642", 15 | "--base09: #dc9656", 16 | "--base0A: #f79a0e", 17 | "--base0B: #538947", 18 | "--base0C: #4b8093", 19 | "--base0D: #7cafc2", 20 | "--base0E: #96609e", 21 | "--base0F: #a16946" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-mocha.js: -------------------------------------------------------------------------------- 1 | // Mocha by Chris Kempson (http://chriskempson.com) 2 | 3 | export const scheme = 'mocha'; 4 | export const author = 'Chris Kempson (http://chriskempson.com)'; 5 | export const vars = [ 6 | "--base00: #3B3228", 7 | "--base01: #534636", 8 | "--base02: #645240", 9 | "--base03: #7e705a", 10 | "--base04: #b8afad", 11 | "--base05: #d0c8c6", 12 | "--base06: #e9e1dd", 13 | "--base07: #f5eeeb", 14 | "--base08: #cb6077", 15 | "--base09: #d28b71", 16 | "--base0A: #f4bc87", 17 | "--base0B: #beb55b", 18 | "--base0C: #7bbda4", 19 | "--base0D: #8ab3b5", 20 | "--base0E: #a89bb9", 21 | "--base0F: #bb9584" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-monokai.js: -------------------------------------------------------------------------------- 1 | // Monokai by Wimer Hazenberg (http://www.monokai.nl) 2 | 3 | export const scheme = 'monokai'; 4 | export const author = 'Wimer Hazenberg (http://www.monokai.nl)'; 5 | export const vars = [ 6 | "--base00: #272822", 7 | "--base01: #383830", 8 | "--base02: #49483e", 9 | "--base03: #75715e", 10 | "--base04: #a59f85", 11 | "--base05: #f8f8f2", 12 | "--base06: #f5f4f1", 13 | "--base07: #f9f8f5", 14 | "--base08: #f92672", 15 | "--base09: #fd971f", 16 | "--base0A: #f4bf75", 17 | "--base0B: #a6e22e", 18 | "--base0C: #a1efe4", 19 | "--base0D: #66d9ef", 20 | "--base0E: #ae81ff", 21 | "--base0F: #cc6633" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-nord.js: -------------------------------------------------------------------------------- 1 | // Nord by arcticicestudio 2 | 3 | export const scheme = 'nord'; 4 | export const author = 'arcticicestudio'; 5 | export const vars = [ 6 | "--base00: #2E3440", 7 | "--base01: #3B4252", 8 | "--base02: #434C5E", 9 | "--base03: #4C566A", 10 | "--base04: #D8DEE9", 11 | "--base05: #E5E9F0", 12 | "--base06: #ECEFF4", 13 | "--base07: #8FBCBB", 14 | "--base08: #BF616A", 15 | "--base09: #D08770", 16 | "--base0A: #EBCB8B", 17 | "--base0B: #A3BE8C", 18 | "--base0C: #88C0D0", 19 | "--base0D: #81A1C1", 20 | "--base0E: #B48EAD", 21 | "--base0F: #5E81AC" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-ocean.js: -------------------------------------------------------------------------------- 1 | // Ocean by Chris Kempson (http://chriskempson.com) 2 | 3 | export const scheme = 'ocean'; 4 | export const author = 'Chris Kempson (http://chriskempson.com)'; 5 | export const vars = [ 6 | "--base00: #2b303b", 7 | "--base01: #343d46", 8 | "--base02: #4f5b66", 9 | "--base03: #65737e", 10 | "--base04: #a7adba", 11 | "--base05: #c0c5ce", 12 | "--base06: #dfe1e8", 13 | "--base07: #eff1f5", 14 | "--base08: #bf616a", 15 | "--base09: #d08770", 16 | "--base0A: #ebcb8b", 17 | "--base0B: #a3be8c", 18 | "--base0C: #96b5b4", 19 | "--base0D: #8fa1b3", 20 | "--base0E: #b48ead", 21 | "--base0F: #ab7967" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-paraiso.js: -------------------------------------------------------------------------------- 1 | // Paraiso by Jan T. Sott 2 | 3 | export const scheme = 'paraiso'; 4 | export const author = 'Jan T. Sott'; 5 | export const vars = [ 6 | "--base00: #2f1e2e", 7 | "--base01: #41323f", 8 | "--base02: #4f424c", 9 | "--base03: #776e71", 10 | "--base04: #8d8687", 11 | "--base05: #a39e9b", 12 | "--base06: #b9b6b0", 13 | "--base07: #e7e9db", 14 | "--base08: #ef6155", 15 | "--base09: #f99b15", 16 | "--base0A: #fec418", 17 | "--base0B: #48b685", 18 | "--base0C: #5bc4bf", 19 | "--base0D: #06b6ef", 20 | "--base0E: #815ba4", 21 | "--base0F: #e96ba8" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-phd.js: -------------------------------------------------------------------------------- 1 | // PhD by Hennig Hasemann (http://leetless.de/vim.html) 2 | 3 | export const scheme = 'phd'; 4 | export const author = 'Hennig Hasemann (http://leetless.de/vim.html)'; 5 | export const vars = [ 6 | "--base00: #061229", 7 | "--base01: #2a3448", 8 | "--base02: #4d5666", 9 | "--base03: #717885", 10 | "--base04: #9a99a3", 11 | "--base05: #b8bbc2", 12 | "--base06: #dbdde0", 13 | "--base07: #ffffff", 14 | "--base08: #d07346", 15 | "--base09: #f0a000", 16 | "--base0A: #fbd461", 17 | "--base0B: #99bf52", 18 | "--base0C: #72b9bf", 19 | "--base0D: #5299bf", 20 | "--base0E: #9989cc", 21 | "--base0F: #b08060" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-pico.js: -------------------------------------------------------------------------------- 1 | // Pico by PICO-8 (http://www.lexaloffle.com/pico-8.php) 2 | 3 | export const scheme = 'pico'; 4 | export const author = 'PICO-8 (http://www.lexaloffle.com/pico-8.php)'; 5 | export const vars = [ 6 | "--base00: #000000", 7 | "--base01: #1d2b53", 8 | "--base02: #7e2553", 9 | "--base03: #008751", 10 | "--base04: #ab5236", 11 | "--base05: #5f574f", 12 | "--base06: #c2c3c7", 13 | "--base07: #fff1e8", 14 | "--base08: #ff004d", 15 | "--base09: #ffa300", 16 | "--base0A: #fff024", 17 | "--base0B: #00e756", 18 | "--base0C: #29adff", 19 | "--base0D: #83769c", 20 | "--base0E: #ff77a8", 21 | "--base0F: #ffccaa" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-pinky.js: -------------------------------------------------------------------------------- 1 | // pinky by Benjamin (https://github.com/b3nj5m1n) 2 | 3 | export const scheme = 'pinky'; 4 | export const author = 'Benjamin (https://github.com/b3nj5m1n)'; 5 | export const vars = [ 6 | "--base00: #171517", 7 | "--base01: #1b181b", 8 | "--base02: #1d1b1d", 9 | "--base03: #383338", 10 | "--base04: #e7dbdb", 11 | "--base05: #f5f5f5", 12 | "--base06: #ffffff", 13 | "--base07: #f7f3f7", 14 | "--base08: #ffa600", 15 | "--base09: #00ff66", 16 | "--base0A: #20df6c", 17 | "--base0B: #ff0066", 18 | "--base0C: #6600ff", 19 | "--base0D: #00ffff", 20 | "--base0E: #007fff", 21 | "--base0F: #df206c" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-pop.js: -------------------------------------------------------------------------------- 1 | // Pop by Chris Kempson (http://chriskempson.com) 2 | 3 | export const scheme = 'pop'; 4 | export const author = 'Chris Kempson (http://chriskempson.com)'; 5 | export const vars = [ 6 | "--base00: #000000", 7 | "--base01: #202020", 8 | "--base02: #303030", 9 | "--base03: #505050", 10 | "--base04: #b0b0b0", 11 | "--base05: #d0d0d0", 12 | "--base06: #e0e0e0", 13 | "--base07: #ffffff", 14 | "--base08: #eb008a", 15 | "--base09: #f29333", 16 | "--base0A: #f8ca12", 17 | "--base0B: #37b349", 18 | "--base0C: #00aabb", 19 | "--base0D: #0e5a94", 20 | "--base0E: #b31e8d", 21 | "--base0F: #7a2d00" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-qualia.js: -------------------------------------------------------------------------------- 1 | // Qualia by isaacwhanson 2 | 3 | export const scheme = 'qualia'; 4 | export const author = 'isaacwhanson'; 5 | export const vars = [ 6 | "--base00: #101010", 7 | "--base01: #454545", 8 | "--base02: #454545", 9 | "--base03: #454545", 10 | "--base04: #808080", 11 | "--base05: #C0C0C0", 12 | "--base06: #C0C0C0", 13 | "--base07: #454545", 14 | "--base08: #EFA6A2", 15 | "--base09: #A3B8EF", 16 | "--base0A: #E6A3DC", 17 | "--base0B: #80C990", 18 | "--base0C: #C8C874", 19 | "--base0D: #50CACD", 20 | "--base0E: #E0AF85", 21 | "--base0F: #808080" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-railscasts.js: -------------------------------------------------------------------------------- 1 | // Railscasts by Ryan Bates (http://railscasts.com) 2 | 3 | export const scheme = 'railscasts'; 4 | export const author = 'Ryan Bates (http://railscasts.com)'; 5 | export const vars = [ 6 | "--base00: #2b2b2b", 7 | "--base01: #272935", 8 | "--base02: #3a4055", 9 | "--base03: #5a647e", 10 | "--base04: #d4cfc9", 11 | "--base05: #e6e1dc", 12 | "--base06: #f4f1ed", 13 | "--base07: #f9f7f3", 14 | "--base08: #da4939", 15 | "--base09: #cc7833", 16 | "--base0A: #ffc66d", 17 | "--base0B: #a5c261", 18 | "--base0C: #519f50", 19 | "--base0D: #6d9cbe", 20 | "--base0E: #b6b3eb", 21 | "--base0F: #bc9458" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-rose-pine.js: -------------------------------------------------------------------------------- 1 | // Rosé Pine by Emilia Dunfelt 2 | 3 | export const scheme = 'rose-pine'; 4 | export const author = 'Emilia Dunfelt '; 5 | export const vars = [ 6 | "--base00: #191724", 7 | "--base01: #1f1d2e", 8 | "--base02: #26233a", 9 | "--base03: #555169", 10 | "--base04: #6e6a86", 11 | "--base05: #e0def4", 12 | "--base06: #f0f0f3", 13 | "--base07: #c5c3ce", 14 | "--base08: #eb6f92", 15 | "--base09: #f6c177", 16 | "--base0A: #f6c177", 17 | "--base0B: #31748f", 18 | "--base0C: #ebbcba", 19 | "--base0D: #9ccfd8", 20 | "--base0E: #c4a7e7", 21 | "--base0F: #e5e5e5" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-sagelight.js: -------------------------------------------------------------------------------- 1 | // Sagelight by Carter Veldhuizen 2 | 3 | export const scheme = 'sagelight'; 4 | export const author = 'Carter Veldhuizen'; 5 | export const vars = [ 6 | "--base00: #f8f8f8", 7 | "--base01: #e8e8e8", 8 | "--base02: #d8d8d8", 9 | "--base03: #b8b8b8", 10 | "--base04: #585858", 11 | "--base05: #383838", 12 | "--base06: #282828", 13 | "--base07: #181818", 14 | "--base08: #fa8480", 15 | "--base09: #ffaa61", 16 | "--base0A: #ffdc61", 17 | "--base0B: #a0d2c8", 18 | "--base0C: #a2d6f5", 19 | "--base0D: #a0a7d2", 20 | "--base0E: #c8a0d2", 21 | "--base0F: #d2b2a0" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-sakura.js: -------------------------------------------------------------------------------- 1 | // Sakura by Misterio77 (http://github.com/Misterio77) 2 | 3 | export const scheme = 'sakura'; 4 | export const author = 'Misterio77 (http://github.com/Misterio77)'; 5 | export const vars = [ 6 | "--base00: #feedf3", 7 | "--base01: #f8e2e7", 8 | "--base02: #e0ccd1", 9 | "--base03: #755f64", 10 | "--base04: #665055", 11 | "--base05: #564448", 12 | "--base06: #42383a", 13 | "--base07: #33292b", 14 | "--base08: #df2d52", 15 | "--base09: #f6661e", 16 | "--base0A: #c29461", 17 | "--base0B: #2e916d", 18 | "--base0C: #1d8991", 19 | "--base0D: #006e93", 20 | "--base0E: #5e2180", 21 | "--base0F: #ba0d35" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-seti.js: -------------------------------------------------------------------------------- 1 | // Seti UI by 2 | 3 | export const scheme = 'seti'; 4 | export const author = ''; 5 | export const vars = [ 6 | "--base00: #151718", 7 | "--base01: #282a2b", 8 | "--base02: #3B758C", 9 | "--base03: #41535B", 10 | "--base04: #43a5d5", 11 | "--base05: #d6d6d6", 12 | "--base06: #eeeeee", 13 | "--base07: #ffffff", 14 | "--base08: #Cd3f45", 15 | "--base09: #db7b55", 16 | "--base0A: #e6cd69", 17 | "--base0B: #9fca56", 18 | "--base0C: #55dbbe", 19 | "--base0D: #55b5db", 20 | "--base0E: #a074c4", 21 | "--base0F: #8a553f" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-summercamp.js: -------------------------------------------------------------------------------- 1 | // summercamp by zoe firi (zoefiri.github.io) 2 | 3 | export const scheme = 'summercamp'; 4 | export const author = 'zoe firi (zoefiri.github.io)'; 5 | export const vars = [ 6 | "--base00: #1c1810", 7 | "--base01: #2a261c", 8 | "--base02: #3a3527", 9 | "--base03: #504b38", 10 | "--base04: #5f5b45", 11 | "--base05: #736e55", 12 | "--base06: #bab696", 13 | "--base07: #f8f5de", 14 | "--base08: #e35142", 15 | "--base09: #fba11b", 16 | "--base0A: #f2ff27", 17 | "--base0B: #5ceb5a", 18 | "--base0C: #5aebbc", 19 | "--base0D: #489bf0", 20 | "--base0E: #FF8080", 21 | "--base0F: #F69BE7" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-tokyo-city-dark.js: -------------------------------------------------------------------------------- 1 | // Tokyo City Dark by Michaël Ball 2 | 3 | export const scheme = 'tokyo-city-dark'; 4 | export const author = 'Michaël Ball'; 5 | export const vars = [ 6 | "--base00: #171D23", 7 | "--base01: #1D252C", 8 | "--base02: #28323A", 9 | "--base03: #526270", 10 | "--base04: #B7C5D3", 11 | "--base05: #D8E2EC", 12 | "--base06: #F6F6F8", 13 | "--base07: #FBFBFD", 14 | "--base08: #F7768E", 15 | "--base09: #FF9E64", 16 | "--base0A: #B7C5D3", 17 | "--base0B: #9ECE6A", 18 | "--base0C: #89DDFF", 19 | "--base0D: #7AA2F7", 20 | "--base0E: #BB9AF7", 21 | "--base0F: #BB9AF7" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-tokyo-city-light.js: -------------------------------------------------------------------------------- 1 | // Tokyo City Light by Michaël Ball 2 | 3 | export const scheme = 'tokyo-city-light'; 4 | export const author = 'Michaël Ball'; 5 | export const vars = [ 6 | "--base00: #FBFBFD", 7 | "--base01: #F6F6F8", 8 | "--base02: #EDEFF6", 9 | "--base03: #9699A3", 10 | "--base04: #4c505e", 11 | "--base05: #343B59", 12 | "--base06: #1D252C", 13 | "--base07: #171D23", 14 | "--base08: #8C4351", 15 | "--base09: #965027", 16 | "--base0A: #4C505E", 17 | "--base0B: #485E30", 18 | "--base0C: #4C505E", 19 | "--base0D: #34548a", 20 | "--base0E: #5A4A78", 21 | "--base0F: #5A4A78" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-tokyo-city-terminal-dark.js: -------------------------------------------------------------------------------- 1 | // Tokyo City Terminal Dark by Michaël Ball 2 | 3 | export const scheme = 'tokyo-city-terminal-dark'; 4 | export const author = 'Michaël Ball'; 5 | export const vars = [ 6 | "--base00: #171D23", 7 | "--base01: #1D252C", 8 | "--base02: #28323A", 9 | "--base03: #526270", 10 | "--base04: #B7C5D3", 11 | "--base05: #D8E2EC", 12 | "--base06: #F6F6F8", 13 | "--base07: #FBFBFD", 14 | "--base08: #D95468", 15 | "--base09: #FF9E64", 16 | "--base0A: #EBBF83", 17 | "--base0B: #8BD49C", 18 | "--base0C: #70E1E8", 19 | "--base0D: #539AFC", 20 | "--base0E: #B62D65", 21 | "--base0F: #DD9D82" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-tokyo-night-dark.js: -------------------------------------------------------------------------------- 1 | // Tokyo Night Dark by Michaël Ball 2 | 3 | export const scheme = 'tokyo-night-dark'; 4 | export const author = 'Michaël Ball'; 5 | export const vars = [ 6 | "--base00: #1A1B26", 7 | "--base01: #16161E", 8 | "--base02: #2F3549", 9 | "--base03: #444B6A", 10 | "--base04: #787C99", 11 | "--base05: #A9B1D6", 12 | "--base06: #CBCCD1", 13 | "--base07: #D5D6DB", 14 | "--base08: #C0CAF5", 15 | "--base09: #A9B1D6", 16 | "--base0A: #0DB9D7", 17 | "--base0B: #9ECE6A", 18 | "--base0C: #B4F9F8", 19 | "--base0D: #2AC3DE", 20 | "--base0E: #BB9AF7", 21 | "--base0F: #F7768E" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-tokyo-night-light.js: -------------------------------------------------------------------------------- 1 | // Tokyo Night Light by Michaël Ball 2 | 3 | export const scheme = 'tokyo-night-light'; 4 | export const author = 'Michaël Ball'; 5 | export const vars = [ 6 | "--base00: #D5D6DB", 7 | "--base01: #CBCCD1", 8 | "--base02: #DFE0E5", 9 | "--base03: #9699A3", 10 | "--base04: #4C505E", 11 | "--base05: #343B59", 12 | "--base06: #1A1B26", 13 | "--base07: #1A1B26", 14 | "--base08: #343B58", 15 | "--base09: #965027", 16 | "--base0A: #166775", 17 | "--base0B: #485E30", 18 | "--base0C: #3E6968", 19 | "--base0D: #34548A", 20 | "--base0E: #5A4A78", 21 | "--base0F: #8C4351" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-tokyo-night-storm.js: -------------------------------------------------------------------------------- 1 | // Tokyo Night Storm by Michaël Ball 2 | 3 | export const scheme = 'tokyo-night-storm'; 4 | export const author = 'Michaël Ball'; 5 | export const vars = [ 6 | "--base00: #24283B", 7 | "--base01: #16161E", 8 | "--base02: #343A52", 9 | "--base03: #444B6A", 10 | "--base04: #787C99", 11 | "--base05: #A9B1D6", 12 | "--base06: #CBCCD1", 13 | "--base07: #D5D6DB", 14 | "--base08: #C0CAF5", 15 | "--base09: #A9B1D6", 16 | "--base0A: #0DB9D7", 17 | "--base0B: #9ECE6A", 18 | "--base0C: #B4F9F8", 19 | "--base0D: #2AC3DE", 20 | "--base0E: #BB9AF7", 21 | "--base0F: #F7768E" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-tube.js: -------------------------------------------------------------------------------- 1 | // London Tube by Jan T. Sott 2 | 3 | export const scheme = 'tube'; 4 | export const author = 'Jan T. Sott'; 5 | export const vars = [ 6 | "--base00: #231f20", 7 | "--base01: #1c3f95", 8 | "--base02: #5a5758", 9 | "--base03: #737171", 10 | "--base04: #959ca1", 11 | "--base05: #d9d8d8", 12 | "--base06: #e7e7e8", 13 | "--base07: #ffffff", 14 | "--base08: #ee2e24", 15 | "--base09: #f386a1", 16 | "--base0A: #ffd204", 17 | "--base0B: #00853e", 18 | "--base0C: #85cebc", 19 | "--base0D: #009ddc", 20 | "--base0E: #98005d", 21 | "--base0F: #b06110" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-unikitty-dark.js: -------------------------------------------------------------------------------- 1 | // Unikitty Dark by Josh W Lewis (@joshwlewis) 2 | 3 | export const scheme = 'unikitty-dark'; 4 | export const author = 'Josh W Lewis (@joshwlewis)'; 5 | export const vars = [ 6 | "--base00: #2e2a31", 7 | "--base01: #4a464d", 8 | "--base02: #666369", 9 | "--base03: #838085", 10 | "--base04: #9f9da2", 11 | "--base05: #bcbabe", 12 | "--base06: #d8d7da", 13 | "--base07: #f5f4f7", 14 | "--base08: #d8137f", 15 | "--base09: #d65407", 16 | "--base0A: #dc8a0e", 17 | "--base0B: #17ad98", 18 | "--base0C: #149bda", 19 | "--base0D: #796af5", 20 | "--base0E: #bb60ea", 21 | "--base0F: #c720ca" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-unikitty-light.js: -------------------------------------------------------------------------------- 1 | // Unikitty Light by Josh W Lewis (@joshwlewis) 2 | 3 | export const scheme = 'unikitty-light'; 4 | export const author = 'Josh W Lewis (@joshwlewis)'; 5 | export const vars = [ 6 | "--base00: #ffffff", 7 | "--base01: #e1e1e2", 8 | "--base02: #c4c3c5", 9 | "--base03: #a7a5a8", 10 | "--base04: #89878b", 11 | "--base05: #6c696e", 12 | "--base06: #4f4b51", 13 | "--base07: #322d34", 14 | "--base08: #d8137f", 15 | "--base09: #d65407", 16 | "--base0A: #dc8a0e", 17 | "--base0B: #17ad98", 18 | "--base0C: #149bda", 19 | "--base0D: #775dff", 20 | "--base0E: #aa17e6", 21 | "--base0F: #e013d0" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-vulcan.js: -------------------------------------------------------------------------------- 1 | // vulcan by Andrey Varfolomeev 2 | 3 | export const scheme = 'vulcan'; 4 | export const author = 'Andrey Varfolomeev'; 5 | export const vars = [ 6 | "--base00: #041523", 7 | "--base01: #122339", 8 | "--base02: #003552", 9 | "--base03: #7a5759", 10 | "--base04: #6b6977", 11 | "--base05: #5b778c", 12 | "--base06: #333238", 13 | "--base07: #214d68", 14 | "--base08: #818591", 15 | "--base09: #9198a3", 16 | "--base0A: #adb4b9", 17 | "--base0B: #977d7c", 18 | "--base0C: #977d7c", 19 | "--base0D: #977d7c", 20 | "--base0E: #9198a3", 21 | "--base0F: #977d7c" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-woodland.js: -------------------------------------------------------------------------------- 1 | // Woodland by Jay Cornwall (https://jcornwall.com) 2 | 3 | export const scheme = 'woodland'; 4 | export const author = 'Jay Cornwall (https://jcornwall.com)'; 5 | export const vars = [ 6 | "--base00: #231e18", 7 | "--base01: #302b25", 8 | "--base02: #48413a", 9 | "--base03: #9d8b70", 10 | "--base04: #b4a490", 11 | "--base05: #cabcb1", 12 | "--base06: #d7c8bc", 13 | "--base07: #e4d4c8", 14 | "--base08: #d35c5c", 15 | "--base09: #ca7f32", 16 | "--base0A: #e0ac16", 17 | "--base0B: #b7ba53", 18 | "--base0C: #6eb958", 19 | "--base0D: #88a4d3", 20 | "--base0E: #bb90e2", 21 | "--base0F: #b49368" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/base16/base16-zenburn.js: -------------------------------------------------------------------------------- 1 | // Zenburn by elnawe 2 | 3 | export const scheme = 'zenburn'; 4 | export const author = 'elnawe'; 5 | export const vars = [ 6 | "--base00: #383838", 7 | "--base01: #404040", 8 | "--base02: #606060", 9 | "--base03: #6f6f6f", 10 | "--base04: #808080", 11 | "--base05: #dcdccc", 12 | "--base06: #c0c0c0", 13 | "--base07: #ffffff", 14 | "--base08: #dca3a3", 15 | "--base09: #dfaf8f", 16 | "--base0A: #e0cf9f", 17 | "--base0B: #5f7f5f", 18 | "--base0C: #93e0e3", 19 | "--base0D: #7cb8bb", 20 | "--base0E: #dc8cc3", 21 | "--base0F: #000000" 22 | ]; 23 | -------------------------------------------------------------------------------- /view/index.svelte: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | bass loop 15 | 16 | 17 |
18 |
19 | 20 | <Runs runs={home.runs} /> 21 | <Footer /> 22 | </main> 23 | 24 | <style> 25 | @import "/css/global.css"; 26 | </style> 27 | -------------------------------------------------------------------------------- /view/vertex/show.svelte: -------------------------------------------------------------------------------- 1 | <script> 2 | export let vertex = {} 3 | </script> 4 | 5 | <h1>Showing Vertex</h1> 6 | 7 | <table border="1" cellpadding="10"> 8 | <thead> 9 | {#each Object.keys(vertex) as key} 10 | <th>{key}</th> 11 | {/each} 12 | </thead> 13 | <tr> 14 | {#each Object.keys(vertex) as key} 15 | <td>{vertex[key]}</td> 16 | {/each} 17 | </tr> 18 | </table> 19 | 20 | <br /> 21 | 22 | <a href="/vertex">Back</a> 23 | 24 | <style> 25 | table { 26 | border-collapse: collapse; 27 | } 28 | </style> 29 | --------------------------------------------------------------------------------