Initial commit

This commit is contained in:
kirbara 2025-12-01 13:23:24 +07:00
commit cfcc57a8bd
Signed by: exp
GPG key ID: D7E63AD0019E75D9
353 changed files with 18756 additions and 0 deletions

View file

@ -0,0 +1,62 @@
/*---------------------------------------------------
Nixos VPS Hostinger ~
---------------------------------------------------*/
{ inputs, den, ... }:
let
hostname = "neru";
username = "kirbara";
platform = "nixos";
architecture = "x86_64-linux";
# ----
in
{
den.hosts.${architecture} = {
${hostname} = {
class = platform;
users.${username} = { };
};
};
den.aspects = {
${hostname} = {
${platform} = {
networking.hostName = hostname;
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [ inputs.self.overlays.default ];
imports = with den.aspects; [
# -------------------------------------------------
base.nixos
software-tty.nixos
# ----------------
root.nixos
ssh-server.nixos
# ----------------
sops.nixos
] ++ [ # ---- nixos home-manager
inputs.home-manager.nixosModules.home-manager {
home-manager.extraSpecialArgs = { inherit inputs; }; # fix infinite recursion
home-manager.backupFileExtension = "backup"; # important
home-manager.users.${username} = {
nixpkgs.overlays = [ inputs.self.overlays.default ];
nixpkgs.config.allowUnfree = true;
imports = with den.aspects; [
# -----
base.homeManager
software-tty.homeManager
# -----
code-editor-tty.homeManager
version-control.homeManager
# -----
yazi.homeManager
# -----
protonvpn-cli.homeManager
];};}];
# ----- additional nixos config
};
};
};
}

View file

@ -0,0 +1,12 @@
{
den.aspects = {
neru = {
nixos = {
boot.loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
};
};
};
};
}

View file

@ -0,0 +1,49 @@
{
den.aspects = {
neru = {
nixos =
{ inputs, lib, ... }:
{
imports = [
inputs.disko.nixosModules.disko
];
disko.devices = {
disk.disk1 = {
device = lib.mkDefault "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
name = "boot";
size = "1M";
type = "EF02";
};
esp = {
name = "ESP";
size = "500M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
name = "root";
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
};
};
}

View file

@ -0,0 +1,27 @@
{
den.aspects = {
neru = {
nixos =
# ----- configuration-hardware. generated, do not change
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[
(modulesPath + "/installer/scan/not-detected.nix")
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.ens18.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
};
};
};
}

View file

@ -0,0 +1,20 @@
``` nix
{
networking.useDHCP = false;
networking.interfaces.eth0 = {
ipv4.addresses = [{
address = /*"00.00.000.00"*/;
prefixLength = /*00*/;
}];
};
networking.defaultGateway = /*"00.00.000.000"*/;
networking.nameservers = [ /*"0.0.0.0" "0.0.0.0"*/ ];
networking.firewall = {
enable = true;
allowedTCPPorts = [ /*00 00 000*/ ];
};
}
```
That's gitignored `neru-networking.nix`
better not to share it carelessly right? hehehe

View file

@ -0,0 +1,11 @@
{
den.aspects = {
neru = {
nixos = {
imports = [
/mnt/infra/private/neru-networking.nix
];
};
};
};
}

View file

@ -0,0 +1,15 @@
{
den.aspects = {
neru = {
nixos = {
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
};
};
};
};
}

View file

@ -0,0 +1,44 @@
{
den.aspects = {
neru = {
nixos =
{ config, lib, ... }:
let
theme = ./theme;
cfg = config.services.forgejo;
img = ./img;
in
{
systemd.tmpfiles.rules = [
"d '${cfg.customDir}/public' 0750 ${cfg.user} ${cfg.group} - -"
"d '${cfg.customDir}/public/assets' 0750 ${cfg.user} ${cfg.group} - -"
"d '${cfg.customDir}/public/assets/img' 0750 ${cfg.user} ${cfg.group} - -"
"L+ '${cfg.customDir}/public/assets/img/logo.svg' - - - - ${img}/logo.svg"
"L+ '${cfg.customDir}/public/assets/img/logo.png' - - - - ${img}/logo.png"
"L+ '${cfg.customDir}/public/assets/img/apple-touch-icon' - - - - ${img}/logo.png"
"L+ '${cfg.customDir}/public/assets/img/favicon.svg' - - - - ${img}/favicon.svg"
"L+ '${cfg.customDir}/public/assets/img/favicon.png' - - - - ${img}/favicon.png"
"L+ '${cfg.customDir}/public/assets/css' - - - - ${theme}"
"d '${cfg.customDir}/templates' - forgejo forgejo - -"
"d '${cfg.customDir}/public' - forgejo forgejo - -"
"d '${cfg.customDir}/public/assets' - forgejo forgejo - -"
"d '${cfg.customDir}/public/assets/css' - forgejo forgejo - -"
"C+ '${cfg.customDir}/templates/home.tmpl' - forgejo forgejo - ${
./home.tmpl
}"
];
services.forgejo.settings.ui = {
THEMES = builtins.concatStringsSep "," (["auto"] ++
(map (name: lib.removePrefix "theme-" (lib.removeSuffix ".css" name))
(builtins.attrNames (builtins.readDir theme))));
DEFAULT_THEME = "catppuccin-black-minimal";
};
};
};
};
}

View file

@ -0,0 +1,56 @@
_:
{
den.aspects = {
neru = {
nixos =
{ lib, pkgs, config, ... }:
{
services.forgejo = {
enable = true;
database.type = "postgres";
lfs.enable = true;
settings = {
DEFAULT = {
APP_NAME = "EXPERIMENTING Repo";
APP_SLOGAN = "love you";
};
repository = {
DISABLE_STARS = true;
};
server = {
DOMAIN = "repo.experimenting.website";
ROOT_URL = "https://repo.experimenting.website/";
HTTP_PORT = 3000;
SSH_PORT = lib.head config.services.openssh.ports;
LANDING_PAGE = "explore";
};
other = {
SHOW_FOOTER_VERSION = false;
SHOW_FOOTER_TEMPLATE_LOAD_TIME = false;
SHOW_FOOTER_POWERED_BY = false;
};
service.DISABLE_REGISTRATION = true;
actions = {
ENABLED = true;
DEFAULT_ACTIONS_URL = "github";
};
};
};
services.postgresql = {
enable = true;
};
security.acme = {
acceptTerms = true;
defaults.email = _.config.meta.kirbara.email;
};
services = {
openssh.settings.AcceptEnv = "GIT_PROTOCOL";
};
};
};
};
}

View file

@ -0,0 +1,13 @@
[[:Template:Template "base/head" .]]
<div role="main" aria-label="[[:Template:If .IsSigned]][[:Template:Ctx.Locale.Tr "dashboard"]][[:Template:Else]][[:Template:Ctx.Locale.Tr "home"]][[:Template:End]]" class="page-content home">
<div class="tw-mb-8 tw-px-8">
<div class="center">
<div class="hero">
<h1 class="ui icon header title">
EXPERIMENTING REPO
</h1>
</div>
</div>
</div>
</div>
[[:Template:Template "base/footer" .]]

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 39 KiB

View file

@ -0,0 +1,18 @@
{
den.aspects = {
neru = {
nixos = {
services.nginx = {
virtualHosts."repo.experimenting.website" = {
forceSSL = true;
enableACME = true;
extraConfig = ''
client_max_body_size 512M;
'';
locations."/".proxyPass = "http://localhost:3000";
};
};
};
};
};
}

View file

@ -0,0 +1,913 @@
@import url('https://fonts.googleapis.com/css2?family=Sono&display=swap');
/* hide bloated -------------- */
#navbar,
.page-footer {
display: none !important;
}
.user.profile .ui.card .profile-avatar-name {
display: none !important;
}
.user.profile .ui.card .extra.content {
display: none !important;
}
.user.profile .ui.card #profile-avatar {
padding: 1rem
}
.repo-buttons {
display: none !important;
}
.ui.menu a.item[href="/explore/users"] {
display: none !important;
}
.ui.menu a.item[href="/explore/organizations"] {
display: none !important;
}
a.flex-text-inline {
display: none !important;
}
/* --------------------------- */
:root {
--fonts-override: "Sono";
color-scheme: dark;
--is-dark-theme: true;
accent-color: #94e2d5;
--color-primary: #94e2d5;
--color-primary-contrast: #000000;
--color-primary-hover: rgb(127.9375, 220.5625, 205.125);
--color-primary-dark-1: rgb(135.9625, 222.7375, 208.275);
--color-primary-dark-2: rgb(123.925, 219.475, 203.55);
--color-primary-dark-3: rgb(111.8875, 216.2125, 198.825);
--color-primary-dark-4: rgb(99.85, 212.95, 194.1);
--color-primary-dark-5: rgb(87.8125, 209.6875, 189.375);
--color-primary-dark-6: rgb(75.775, 206.425, 184.65);
--color-primary-dark-7: rgb(63.7375, 203.1625, 179.925);
--color-primary-light-1: rgb(160.0375, 229.2625, 217.725);
--color-primary-light-2: rgb(172.075, 232.525, 222.45);
--color-primary-light-3: rgb(184.1125, 235.7875, 227.175);
--color-primary-light-4: rgb(196.15, 239.05, 231.9);
--color-primary-light-5: rgb(208.1875, 242.3125, 236.625);
--color-primary-light-6: rgb(220.225, 245.575, 241.35);
--color-primary-light-7: rgb(232.2625, 248.8375, 246.075);
--color-primary-alpha-10: rgba(148, 226, 213, 0.1);
--color-primary-alpha-20: rgba(148, 226, 213, 0.2);
--color-primary-alpha-30: rgba(148, 226, 213, 0.3);
--color-primary-alpha-40: rgba(148, 226, 213, 0.4);
--color-primary-alpha-50: rgba(148, 226, 213, 0.5);
--color-primary-alpha-60: rgba(148, 226, 213, 0.6);
--color-primary-alpha-70: rgba(148, 226, 213, 0.7);
--color-primary-alpha-80: rgba(148, 226, 213, 0.8);
--color-primary-alpha-90: rgba(148, 226, 213, 0.9);
--color-secondary: #202020;
--color-secondary-dark-1: rgb(55.4076923077, 56.5384615385, 76.8923076923);
--color-secondary-dark-2: rgb(61.8153846154, 63.0769230769, 85.7846153846);
--color-secondary-dark-3: rgb(68.2230769231, 69.6153846154, 94.6769230769);
--color-secondary-dark-4: rgb(74.6307692308, 76.1538461538, 103.5692307692);
--color-secondary-dark-5: rgb(81.0384615385, 82.6923076923, 112.4615384615);
--color-secondary-dark-6: rgb(87.4461538462, 89.2307692308, 121.3538461538);
--color-secondary-dark-7: rgb(93.8538461538, 95.7692307692, 130.2461538462);
--color-secondary-dark-8: rgb(100.2615384615, 102.3076923077, 139.1384615385);
--color-secondary-dark-9: rgb(106.6692307692, 108.8461538462, 148.0307692308);
--color-secondary-dark-10: rgb(115.5128205128, 117.5641025641, 154.4871794872);
--color-secondary-dark-11: rgb(124.4051282051, 126.3256410256, 160.8948717949);
--color-secondary-dark-12: rgb(133.2974358974, 135.0871794872, 167.3025641026);
--color-secondary-dark-13: rgb(142.1897435897, 143.8487179487, 173.7102564103);
--color-secondary-light-1: rgb(42.5923076923, 43.4615384615, 59.1076923077);
--color-secondary-light-2: rgb(36.1846153846, 36.9230769231, 50.2153846154);
--color-secondary-light-3: rgb(29.7769230769, 30.3846153846, 41.3230769231);
--color-secondary-light-4: rgb(23.3692307692, 23.8461538462, 32.4307692308);
--color-secondary-alpha-10: rgba(49, 50, 68, 0.1);
--color-secondary-alpha-20: rgba(49, 50, 68, 0.2);
--color-secondary-alpha-30: rgba(49, 50, 68, 0.3);
--color-secondary-alpha-40: rgba(49, 50, 68, 0.4);
--color-secondary-alpha-50: rgba(49, 50, 68, 0.5);
--color-secondary-alpha-60: rgba(49, 50, 68, 0.6);
--color-secondary-alpha-70: rgba(49, 50, 68, 0.7);
--color-secondary-alpha-80: rgba(49, 50, 68, 0.8);
--color-secondary-alpha-90: rgba(49, 50, 68, 0.9);
/* colors */
--color-red: #f38ba8;
--color-orange: #fab387;
--color-yellow: #f9e2af;
--color-olive: #a6e3a1;
--color-green: #a6e3a1;
--color-teal: #94e2d5;
--color-blue: #89b4fa;
--color-violet: #b4befe;
--color-purple: #cba6f7;
--color-pink: #f5c2e7;
--color-brown: #f2cdcd;
--color-grey: #9399b2;
--color-black: #000000;
/* light variants - produced via Sass scale-color(color, $lightness: -10%) */
--color-red-light: rgb(238.21875, 92.78125, 133.3359375);
--color-orange-light: rgb(247.96, 147.992, 86.04);
--color-yellow-light: rgb(245.4418604651, 208.8023255814, 127.5581395349);
--color-olive-light: rgb(128.7950819672, 215.2950819672, 121.7049180328);
--color-green-light: rgb(128.7950819672, 215.2950819672, 121.7049180328);
--color-teal-light: rgb(107.875, 215.125, 197.25);
--color-blue-light: rgb(88.0731707317, 148.9024390244, 247.9268292683);
--color-violet-light: rgb(129.6710526316, 146.3815789474, 253.3289473684);
--color-purple-light: rgb(175.6597938144, 119.206185567, 242.793814433);
--color-pink-light: rgb(237.8169014085, 150.1830985915, 213.7605633803);
--color-brown-light: rgb(231.4761904762, 164.5238095238, 164.5238095238);
--color-grey-light: rgb(117.227027027, 124.8810810811, 156.772972973);
--color-black-light: rgb(3.9344262295, 3.9344262295, 6.0655737705);
/* dark 1 variants - produced via Sass scale-color(color, $lightness: -10%) */
--color-red-dark-1: rgb(238.21875, 92.78125, 133.3359375);
--color-orange-dark-1: rgb(247.96, 147.992, 86.04);
--color-yellow-dark-1: rgb(245.4418604651, 208.8023255814, 127.5581395349);
--color-olive-dark-1: rgb(128.7950819672, 215.2950819672, 121.7049180328);
--color-green-dark-1: rgb(128.7950819672, 215.2950819672, 121.7049180328);
--color-teal-dark-1: rgb(107.875, 215.125, 197.25);
--color-blue-dark-1: rgb(88.0731707317, 148.9024390244, 247.9268292683);
--color-violet-dark-1: rgb(129.6710526316, 146.3815789474, 253.3289473684);
--color-purple-dark-1: rgb(175.6597938144, 119.206185567, 242.793814433);
--color-pink-dark-1: rgb(237.8169014085, 150.1830985915, 213.7605633803);
--color-brown-dark-1: rgb(231.4761904762, 164.5238095238, 164.5238095238);
--color-black-dark-1: rgb(3.9344262295, 3.9344262295, 6.0655737705);
/* dark 2 variants - produced via Sass scale-color(color, $lightness: -20%) */
--color-red-dark-2: rgb(233.4375, 46.5625, 98.671875);
--color-orange-dark-2: rgb(245.92, 116.984, 37.08);
--color-yellow-dark-2: rgb(241.8837209302, 191.6046511628, 80.1162790698);
--color-olive-dark-2: rgb(91.5901639344, 203.5901639344, 82.4098360656);
--color-green-dark-2: rgb(91.5901639344, 203.5901639344, 82.4098360656);
--color-teal-dark-2: rgb(67.75, 204.25, 181.5);
--color-blue-dark-2: rgb(39.1463414634, 117.8048780488, 245.8536585366);
--color-violet-dark-2: rgb(79.3421052632, 102.7631578947, 252.6578947368);
--color-purple-dark-2: rgb(148.3195876289, 72.412371134, 238.587628866);
--color-pink-dark-2: rgb(230.6338028169, 106.3661971831, 196.5211267606);
--color-brown-dark-2: rgb(220.9523809524, 124.0476190476, 124.0476190476);
--color-black-dark-2: hsl(240, 21.3114754098%, -8.0392156863%);
/* other colors */
--color-gold: #f5e0dc;
--color-white: #cdd6f4;
--color-diff-removed-word-bg: rgba(243, 139, 168, 0.15);
--color-diff-added-word-bg: rgba(166, 227, 161, 0.15);
--color-diff-removed-row-bg: rgba(243, 139, 168, 0.07);
--color-diff-moved-row-bg: rgba(249, 226, 175, 0.07);
--color-diff-added-row-bg: rgba(166, 227, 161, 0.07);
--color-diff-removed-row-border: rgba(243, 139, 168, 0.07);
--color-diff-moved-row-border: rgba(249, 226, 175, 0.07);
--color-diff-added-row-border: rgba(166, 227, 161, 0.07);
--color-diff-inactive: #9399b2;
--color-error-border: #f38ba8;
--color-error-bg: #f38ba8;
--color-error-bg-active: rgb(240.609375, 115.890625, 150.66796875);
--color-error-bg-hover: rgb(238.21875, 92.78125, 133.3359375);
--color-error-text: #11111b;
--color-success-border: rgb(128.7950819672, 215.2950819672, 121.7049180328);
--color-success-bg: #a6e3a1;
--color-success-text: #11111b;
--color-warning-border: rgb(245.4418604651, 208.8023255814, 127.5581395349);
--color-warning-bg: #f9e2af;
--color-warning-text: #11111b;
--color-info-border: rgb(88.0731707317, 148.9024390244, 247.9268292683);
--color-info-bg: #11111b;
--color-info-text: #cdd6f4;
--color-red-badge: rgb(238.21875, 92.78125, 133.3359375);
--color-red-badge-bg: #11111b;
--color-red-badge-hover-bg: rgb(240.609375, 115.890625, 150.66796875);
--color-green-badge: #a6e3a1;
--color-green-badge-bg: #a6e3a1;
--color-green-badge-hover-bg: rgb(147.3975409836, 221.1475409836, 141.3524590164);
--color-yellow-badge: #f9e2af;
--color-yellow-badge-bg: #11111b;
--color-yellow-badge-hover-bg: rgb(247.2209302326, 217.4011627907, 151.2790697674);
--color-orange-badge: #fab387;
--color-orange-badge-bg: #11111b;
--color-orange-badge-hover-bg: rgb(248.98, 163.496, 110.52);
--color-git: #fab387;
--color-highlight-bg: rgba(249, 226, 175, 0.15);
/* target-based colors */
--color-body: #000000;
--color-box-header: #000000;
--color-box-body: #000000;
--color-box-body-highlight: #313244;
--color-text-dark: #a6adc8;
--color-text: #cdd6f4;
--color-text-light: #bac2de;
--color-text-light-1: #bac2de;
--color-text-light-2: #bac2de;
--color-text-light-3: #bac2de;
--color-footer: #000000;
--color-timeline: #313244;
--color-input-text: #cdd6f4;
--color-input-background: #111111;
--color-input-toggle-background: #313244;
--color-input-border: #202020;
--color-input-border-hover: #585b70;
--color-nav-bg: #000000;
--color-nav-hover-bg: var(--color-hover);
--color-navbar: #000000;
--color-navbar-transparent: rgba(17, 17, 27, 0);
--color-light: rgba(88, 91, 112, 0.3);
--color-light-mimic-enabled: rgba(
0,
0,
0,
calc(40 / 255 * 222 / 255 / var(--opacity-disabled))
);
--color-light-border: #585b70;
--color-hover: rgba(108, 112, 134, 0.2);
--color-active: rgba(205, 214, 244, 0.1);
--color-menu: #313244;
--color-card: #313244;
--color-markup-table-row: rgba(205, 214, 244, 0.02);
--color-markup-code-block: rgba(205, 214, 244, 0.05);
--color-markup-code-inline: #313244;
--color-button: #111111;
--color-code-bg: #1e1e2e;
--color-code-sidebar-bg: #313244;
--color-shadow: rgba(17, 17, 27, 0.1);
--color-tooltip-bg: #313244;
--color-tooltip-text: var(--color-text);
--color-secondary-bg: #313244;
--color-text-focus: #cdd6f4;
--color-expand-button: #585b70;
--color-placeholder-text: #a6adc8;
--color-editor-line-highlight: var(--color-primary-light-5);
--color-project-board-bg: var(--color-secondary-light-2);
/* gitea source code: */
/* should ideally be --color-text-dark, see go-gitea/gitea#15651 */
--color-caret: var(--color-text);
--color-reaction-bg: rgba(205, 214, 244, 0.07);
--color-reaction-active-bg: var(--color-primary-alpha-40);
--color-header-wrapper: #181825;
--color-header-wrapper-transparent: rgba(24, 24, 37, 0);
--color-label-text: #11111b;
--color-label-bg: #94e2d5;
--color-label-hover-bg: rgb(123.925, 219.475, 203.55);
--color-label-active-bg: rgb(135.9625, 222.7375, 208.275);
--color-accent: var(--color-primary-light-1);
--color-small-accent: var(--color-primary-light-5);
--color-active-line: #202020;
}
/* invert emojis that are hard to read otherwise */
.emoji[aria-label="check mark"],
.emoji[aria-label="currency exchange"],
.emoji[aria-label="TOP arrow"],
.emoji[aria-label="END arrow"],
.emoji[aria-label="ON! arrow"],
.emoji[aria-label="SOON arrow"],
.emoji[aria-label="heavy dollar sign"],
.emoji[aria-label=copyright],
.emoji[aria-label=registered],
.emoji[aria-label="trade mark"],
.emoji[aria-label=multiply],
.emoji[aria-label=plus],
.emoji[aria-label=minus],
.emoji[aria-label=divide],
.emoji[aria-label="curly loop"],
.emoji[aria-label="double curly loop"],
.emoji[aria-label="wavy dash"],
.emoji[aria-label="paw prints"],
.emoji[aria-label="musical note"],
.emoji[aria-label="musical notes"] {
filter: invert(100%) hue-rotate(180deg);
}
.ui.ui.ui.button:not(.inverted, .basic).primary, .ui.ui.ui.button:not(.inverted, .basic).green, .ui.ui.ui.button:not(.inverted, .basic).red, .ui.ui.ui.button:not(.inverted, .basic).teal,
.ui.ui.ui.label:not(.inverted, .basic).primary,
.ui.ui.ui.label:not(.inverted, .basic).green,
.ui.ui.ui.label:not(.inverted, .basic).red,
.ui.ui.ui.label:not(.inverted, .basic).teal {
color: #11111b;
}
.ui.ui.ui.button:not(.inverted, .basic).primary:hover, .ui.ui.ui.button:not(.inverted, .basic).green:hover, .ui.ui.ui.button:not(.inverted, .basic).red:hover, .ui.ui.ui.button:not(.inverted, .basic).teal:hover,
.ui.ui.ui.label:not(.inverted, .basic).primary:hover,
.ui.ui.ui.label:not(.inverted, .basic).green:hover,
.ui.ui.ui.label:not(.inverted, .basic).red:hover,
.ui.ui.ui.label:not(.inverted, .basic).teal:hover {
color: #1e1e2e;
}
.ui.basic.modal {
background-color: #1e1e2e;
}
.ui.commit-header-row .svg.gitea-lock ~ a {
color: #11111b;
}
.ui.negative.message .header {
color: var(--color-error-text);
}
.ui.sha.isSigned.isVerified .shortsha {
color: #11111b;
}
.ui.sha.isSigned.isVerified svg.gitea-lock {
fill: #11111b;
}
.ui.basic.modal,
.ui.basic.modal > .header,
.ui.inverted.button {
color: #cdd6f4 !important;
}
#repo-topics,
#topic_edit > .ui.selection.dropdown {
color: var(--color-label-text) !important;
}
blockquote.attention-tip {
border-left-color: var(--color-success-bg);
}
blockquote.attention-warning {
border-left-color: var(--color-warning-bg);
}
svg.attention-tip,
strong.attention-tip {
color: var(--color-success-bg);
}
svg.attention-warning,
strong.attention-warning {
color: var(--color-warning-bg);
}
.inline-code-block {
color: #11111b;
}
::selection {
background: rgba(148, 226, 213, 0.3) !important;
}
/* NameBuiltinPseudo */
.chroma .bp {
color: #fab387;
}
/* Comment */
.chroma .c {
color: #6c7086;
}
/* CommentSingle */
.chroma .c1 {
color: #6c7086;
}
/* CommentHashbang */
.chroma .ch {
color: #6c7086;
}
/* CommentMultiline */
.chroma .cm {
color: #6c7086;
}
/* CommentPreproc */
.chroma .cp {
color: #89b4fa;
}
/* CommentPreprocFile */
.chroma .cpf {
color: #89b4fa;
}
/* CommentSpecial */
.chroma .cs {
color: #6c7086;
}
/* LiteralStringDelimiter */
.chroma .dl {
color: #89b4fa;
}
/* NameFunctionMagic */
/* Generic */
/* GenericDeleted */
.chroma .gd {
color: #cdd6f4;
background-color: rgba(243, 139, 168, 0.15);
}
/* GenericEmph */
.chroma .ge {
font-style: italic;
}
/* GenericHeading */
.chroma .gh {
color: #89dceb;
}
/* GenericInserted */
.chroma .gi {
color: #cdd6f4;
background-color: rgba(166, 227, 161, 0.15);
}
/* GenericUnderline */
/* GenericOutput */
.chroma .go {
color: #fab387;
}
/* GenericPrompt */
.chroma .gp {
color: #6c7086;
font-weight: bold;
}
/* GenericError */
.chroma .gr {
color: #eba0ac;
}
/* GenericStrong */
.chroma .gs {
font-weight: bold;
}
/* GenericTraceback */
.chroma .gt {
color: #eba0ac;
}
/* GenericSubheading */
.chroma .gu {
color: #89dceb;
}
/* LiteralNumberIntegerLong */
.chroma .il {
color: #fab387;
}
/* Keyword */
.chroma .k {
color: #cba6f7;
}
/* KeywordConstant */
.chroma .kc {
color: #f9e2af;
}
/* KeywordDeclaration */
.chroma .kd {
color: #cba6f7;
}
/* KeywordNamespace */
.chroma .kn {
color: #f9e2af;
}
/* KeywordPseudo */
.chroma .kp {
color: #cba6f7;
font-weight: bold;
}
/* KeywordReserved */
.chroma .kr {
color: #cba6f7;
}
/* KeywordType */
.chroma .kt {
color: #f9e2af;
}
/* Literal */
/* LiteralDate */
/* LiteralNumber */
.chroma .m {
color: #fab387;
}
/* LiteralNumberBin */
.chroma .mb {
color: #fab387;
}
/* LiteralNumberFloat */
.chroma .mf {
color: #fab387;
}
/* LiteralNumberHex */
.chroma .mh {
color: #fab387;
}
/* LiteralNumberInteger */
.chroma .mi {
color: #fab387;
}
/* LiteralNumberOct */
.chroma .mo {
color: #fab387;
}
/* Name */
.chroma .n {
color: #b4befe;
}
/* NameAttribute */
.chroma .na {
color: #f9e2af;
}
/* NameBuiltin */
.chroma .nb {
color: #fab387;
}
/* NameClass */
.chroma .nc {
color: #f9e2af;
}
/* NameDecorator */
.chroma .nd {
color: #f5c2e7;
}
/* NameException */
.chroma .ne {
color: #eba0ac;
}
/* NameFunction */
.chroma .nf {
color: #89b4fa;
}
/* NameEntity */
.chroma .ni {
color: #f5c2e7;
}
/* NameLabel */
.chroma .nl {
color: #f9e2af;
}
/* NameNamespace */
.chroma .nn {
color: #f9e2af;
}
/* NameConstant */
.chroma .no {
color: #f9e2af;
}
/* NameTag */
.chroma .nt {
color: #cba6f7;
}
/* NameVariable */
.chroma .nv {
color: #fab387;
}
/* NameOther */
.chroma .nx {
color: #fab387;
}
/* Operator */
.chroma .o {
color: #89dceb;
}
/* OperatorWord */
.chroma .ow {
color: #89dceb;
font-weight: bold;
}
/* Punctuation */
.chroma .p {
color: #9399b2;
}
/* NameProperty */
/* LiteralString */
.chroma .s {
color: #a6e3a1;
}
/* LiteralStringSingle */
.chroma .s1 {
color: #a6e3a1;
}
/* LiteralStringDouble */
.chroma .s2 {
color: #a6e3a1;
}
/* LiteralStringAffix */
.chroma .sa {
color: #a6e3a1;
}
/* LiteralStringBacktick */
.chroma .sb {
color: #a6e3a1;
}
/* LiteralStringChar */
.chroma .sc {
color: #a6e3a1;
}
/* LiteralStringDoc */
.chroma .sd {
color: #a6e3a1;
}
/* LiteralStringEscape */
.chroma .se {
color: #89b4fa;
}
/* LiteralStringHeredoc */
.chroma .sh {
color: #a6e3a1;
}
/* LiteralStringInterpol */
.chroma .si {
color: #a6e3a1;
}
/* LiteralStringRegex */
.chroma .sr {
color: #89b4fa;
}
/* LiteralStringSymbol */
.chroma .ss {
color: #a6e3a1;
}
/* LiteralStringOther */
.chroma .sx {
color: #a6e3a1;
}
/* NameVariableClass */
.chroma .vc {
color: #f9e2af;
}
/* NameVariableGlobal */
.chroma .vg {
color: #fab387;
}
/* NameVariableInstance */
.chroma .vi {
color: #f9e2af;
}
/* NameVariableMagic */
/* TextWhitespace */
.chroma .w {
color: #313244;
}
.CodeMirror .cm-property,
.CodeMirror.cm-s-default .cm-property,
.CodeMirror.cm-s-paper .cm-property {
color: #cdd6f4;
}
.CodeMirror .cm-header,
.CodeMirror.cm-s-default .cm-header,
.CodeMirror.cm-s-paper .cm-header {
color: #cdd6f4;
}
.CodeMirror .cm-quote,
.CodeMirror.cm-s-default .cm-quote,
.CodeMirror.cm-s-paper .cm-quote {
color: #a6e3a1;
}
.CodeMirror .cm-keyword,
.CodeMirror.cm-s-default .cm-keyword,
.CodeMirror.cm-s-paper .cm-keyword {
color: #cba6f7;
}
.CodeMirror .cm-atom,
.CodeMirror.cm-s-default .cm-atom,
.CodeMirror.cm-s-paper .cm-atom {
color: #f38ba8;
}
.CodeMirror .cm-number,
.CodeMirror.cm-s-default .cm-number,
.CodeMirror.cm-s-paper .cm-number {
color: #fab387;
}
.CodeMirror .cm-def,
.CodeMirror.cm-s-default .cm-def,
.CodeMirror.cm-s-paper .cm-def {
color: #cdd6f4;
}
.CodeMirror .cm-variable-2,
.CodeMirror.cm-s-default .cm-variable-2,
.CodeMirror.cm-s-paper .cm-variable-2 {
color: #89dceb;
}
.CodeMirror .cm-variable-3,
.CodeMirror.cm-s-default .cm-variable-3,
.CodeMirror.cm-s-paper .cm-variable-3 {
color: #94e2d5;
}
.CodeMirror .cm-comment,
.CodeMirror.cm-s-default .cm-comment,
.CodeMirror.cm-s-paper .cm-comment {
color: #585b70;
}
.CodeMirror .cm-string,
.CodeMirror.cm-s-default .cm-string,
.CodeMirror.cm-s-paper .cm-string {
color: #a6e3a1;
}
.CodeMirror .cm-string-2,
.CodeMirror.cm-s-default .cm-string-2,
.CodeMirror.cm-s-paper .cm-string-2 {
color: #a6e3a1;
}
.CodeMirror .cm-meta,
.CodeMirror.cm-s-default .cm-meta,
.CodeMirror.cm-s-paper .cm-meta {
color: #fab387;
}
.CodeMirror .cm-qualifier,
.CodeMirror.cm-s-default .cm-qualifier,
.CodeMirror.cm-s-paper .cm-qualifier {
color: #fab387;
}
.CodeMirror .cm-builtin,
.CodeMirror.cm-s-default .cm-builtin,
.CodeMirror.cm-s-paper .cm-builtin {
color: #fab387;
}
.CodeMirror .cm-bracket,
.CodeMirror.cm-s-default .cm-bracket,
.CodeMirror.cm-s-paper .cm-bracket {
color: #cdd6f4;
}
.CodeMirror .cm-tag,
.CodeMirror.cm-s-default .cm-tag,
.CodeMirror.cm-s-paper .cm-tag {
color: #f9e2af;
}
.CodeMirror .cm-attribute,
.CodeMirror.cm-s-default .cm-attribute,
.CodeMirror.cm-s-paper .cm-attribute {
color: #f9e2af;
}
.CodeMirror .cm-hr,
.CodeMirror.cm-s-default .cm-hr,
.CodeMirror.cm-s-paper .cm-hr {
color: #9399b2;
}
.CodeMirror .cm-url,
.CodeMirror.cm-s-default .cm-url,
.CodeMirror.cm-s-paper .cm-url {
color: #89b4fa;
}
.CodeMirror .cm-link,
.CodeMirror.cm-s-default .cm-link,
.CodeMirror.cm-s-paper .cm-link {
color: #89b4fa;
}
.CodeMirror .cm-error,
.CodeMirror.cm-s-default .cm-error,
.CodeMirror.cm-s-paper .cm-error {
color: #f38ba8;
}
.monaco-editor .selected-text {
background-color: #313244 !important;
}
.monaco-editor .margin-view-overlays .line-numbers {
color: #a6adc8 !important;
}
.monaco-editor .line-numbers.active-line-number {
color: #94e2d5 !important;
}
.monaco-editor .view-overlays .current-line,
.monaco-editor .margin-view-overlays .current-line-margin {
background-color: rgb(42.16, 42.8, 60.08) !important;
}
.monaco-editor .mtk1 {
color: #cdd6f4 !important;
}
.monaco-editor .mtk2 {
color: #ff69b4 !important;
}
.monaco-editor .mtk3 {
color: #fab387 !important;
}
.monaco-editor .mtk4 {
color: #94e2d5 !important;
}
.monaco-editor .mtk5 {
color: #cdd6f4 !important;
}
.monaco-editor .mtk6 {
color: #cba6f7 !important;
}
.monaco-editor .mtk7 {
color: #fab387 !important;
}
.monaco-editor .mtk8 {
color: #9399b2 !important;
}
.monaco-editor .mtk9 {
color: #cba6f7 !important;
}
.monaco-editor .mtk10 {
color: #a6adc8 !important;
}
.monaco-editor .mtk11 {
color: #94e2d5 !important;
}
.monaco-editor .mtk12 {
color: #94e2d5 !important;
}
.monaco-editor .mtk13 {
color: #ff69b4 !important;
}
.monaco-editor .mtk14 {
color: #ff69b4 !important;
}
.monaco-editor .mtk15 {
color: #cba6f7 !important;
}
.monaco-editor .mtk16 {
color: #9399b2 !important;
}
.monaco-editor .mtk17 {
color: #ff69b4 !important;
}
.monaco-editor .mtk18 {
color: #ff69b4 !important;
}
.monaco-editor .mtk19 {
color: #94e2d5 !important;
}
.monaco-editor .mtk20 {
color: #ff69b4 !important;
}
.monaco-editor .mtk21 {
color: #a6e3a1 !important;
}
.monaco-editor .mtk22 {
color: #ff69b4 !important;
}
.monaco-editor .mtk23 {
color: #89b4fa !important;
}
.monaco-editor .mtk24 {
color: #fab387 !important;
}
.monaco-editor .mtk25 {
color: #f5c2e7 !important;
}
.monaco-editor .bracket-highlighting-0 {
color: rgb(227.8, 169, 198.4) !important;
}
.monaco-editor .bracket-highlighting-1 {
color: rgb(232, 193, 178.6) !important;
}
.monaco-editor .bracket-highlighting-2 {
color: rgb(231.4, 221.2, 202.6) !important;
}
.monaco-editor .bracket-highlighting-3 {
color: rgb(181.6, 221.8, 194.2) !important;
}
.monaco-editor .bracket-highlighting-4 {
color: rgb(164.2, 193.6, 247.6) !important;
}
.monaco-editor .bracket-highlighting-5 {
color: rgb(203.8, 185.2, 245.8) !important;
}

View file

@ -0,0 +1,876 @@
@import url('https://fonts.googleapis.com/css2?family=Sono&display=swap');
:root {
--fonts-override: "Sono";
color-scheme: dark;
--is-dark-theme: true;
accent-color: #94e2d5;
--color-primary: #94e2d5;
--color-primary-contrast: #000000;
--color-primary-hover: rgb(127.9375, 220.5625, 205.125);
--color-primary-dark-1: rgb(135.9625, 222.7375, 208.275);
--color-primary-dark-2: rgb(123.925, 219.475, 203.55);
--color-primary-dark-3: rgb(111.8875, 216.2125, 198.825);
--color-primary-dark-4: rgb(99.85, 212.95, 194.1);
--color-primary-dark-5: rgb(87.8125, 209.6875, 189.375);
--color-primary-dark-6: rgb(75.775, 206.425, 184.65);
--color-primary-dark-7: rgb(63.7375, 203.1625, 179.925);
--color-primary-light-1: rgb(160.0375, 229.2625, 217.725);
--color-primary-light-2: rgb(172.075, 232.525, 222.45);
--color-primary-light-3: rgb(184.1125, 235.7875, 227.175);
--color-primary-light-4: rgb(196.15, 239.05, 231.9);
--color-primary-light-5: rgb(208.1875, 242.3125, 236.625);
--color-primary-light-6: rgb(220.225, 245.575, 241.35);
--color-primary-light-7: rgb(232.2625, 248.8375, 246.075);
--color-primary-alpha-10: rgba(148, 226, 213, 0.1);
--color-primary-alpha-20: rgba(148, 226, 213, 0.2);
--color-primary-alpha-30: rgba(148, 226, 213, 0.3);
--color-primary-alpha-40: rgba(148, 226, 213, 0.4);
--color-primary-alpha-50: rgba(148, 226, 213, 0.5);
--color-primary-alpha-60: rgba(148, 226, 213, 0.6);
--color-primary-alpha-70: rgba(148, 226, 213, 0.7);
--color-primary-alpha-80: rgba(148, 226, 213, 0.8);
--color-primary-alpha-90: rgba(148, 226, 213, 0.9);
--color-secondary: #202020;
--color-secondary-dark-1: rgb(55.4076923077, 56.5384615385, 76.8923076923);
--color-secondary-dark-2: rgb(61.8153846154, 63.0769230769, 85.7846153846);
--color-secondary-dark-3: rgb(68.2230769231, 69.6153846154, 94.6769230769);
--color-secondary-dark-4: rgb(74.6307692308, 76.1538461538, 103.5692307692);
--color-secondary-dark-5: rgb(81.0384615385, 82.6923076923, 112.4615384615);
--color-secondary-dark-6: rgb(87.4461538462, 89.2307692308, 121.3538461538);
--color-secondary-dark-7: rgb(93.8538461538, 95.7692307692, 130.2461538462);
--color-secondary-dark-8: rgb(100.2615384615, 102.3076923077, 139.1384615385);
--color-secondary-dark-9: rgb(106.6692307692, 108.8461538462, 148.0307692308);
--color-secondary-dark-10: rgb(115.5128205128, 117.5641025641, 154.4871794872);
--color-secondary-dark-11: rgb(124.4051282051, 126.3256410256, 160.8948717949);
--color-secondary-dark-12: rgb(133.2974358974, 135.0871794872, 167.3025641026);
--color-secondary-dark-13: rgb(142.1897435897, 143.8487179487, 173.7102564103);
--color-secondary-light-1: rgb(42.5923076923, 43.4615384615, 59.1076923077);
--color-secondary-light-2: rgb(36.1846153846, 36.9230769231, 50.2153846154);
--color-secondary-light-3: rgb(29.7769230769, 30.3846153846, 41.3230769231);
--color-secondary-light-4: rgb(23.3692307692, 23.8461538462, 32.4307692308);
--color-secondary-alpha-10: rgba(49, 50, 68, 0.1);
--color-secondary-alpha-20: rgba(49, 50, 68, 0.2);
--color-secondary-alpha-30: rgba(49, 50, 68, 0.3);
--color-secondary-alpha-40: rgba(49, 50, 68, 0.4);
--color-secondary-alpha-50: rgba(49, 50, 68, 0.5);
--color-secondary-alpha-60: rgba(49, 50, 68, 0.6);
--color-secondary-alpha-70: rgba(49, 50, 68, 0.7);
--color-secondary-alpha-80: rgba(49, 50, 68, 0.8);
--color-secondary-alpha-90: rgba(49, 50, 68, 0.9);
/* colors */
--color-red: #f38ba8;
--color-orange: #fab387;
--color-yellow: #f9e2af;
--color-olive: #a6e3a1;
--color-green: #a6e3a1;
--color-teal: #94e2d5;
--color-blue: #89b4fa;
--color-violet: #b4befe;
--color-purple: #cba6f7;
--color-pink: #f5c2e7;
--color-brown: #f2cdcd;
--color-grey: #9399b2;
--color-black: #000000;
/* light variants - produced via Sass scale-color(color, $lightness: -10%) */
--color-red-light: rgb(238.21875, 92.78125, 133.3359375);
--color-orange-light: rgb(247.96, 147.992, 86.04);
--color-yellow-light: rgb(245.4418604651, 208.8023255814, 127.5581395349);
--color-olive-light: rgb(128.7950819672, 215.2950819672, 121.7049180328);
--color-green-light: rgb(128.7950819672, 215.2950819672, 121.7049180328);
--color-teal-light: rgb(107.875, 215.125, 197.25);
--color-blue-light: rgb(88.0731707317, 148.9024390244, 247.9268292683);
--color-violet-light: rgb(129.6710526316, 146.3815789474, 253.3289473684);
--color-purple-light: rgb(175.6597938144, 119.206185567, 242.793814433);
--color-pink-light: rgb(237.8169014085, 150.1830985915, 213.7605633803);
--color-brown-light: rgb(231.4761904762, 164.5238095238, 164.5238095238);
--color-grey-light: rgb(117.227027027, 124.8810810811, 156.772972973);
--color-black-light: rgb(3.9344262295, 3.9344262295, 6.0655737705);
/* dark 1 variants - produced via Sass scale-color(color, $lightness: -10%) */
--color-red-dark-1: rgb(238.21875, 92.78125, 133.3359375);
--color-orange-dark-1: rgb(247.96, 147.992, 86.04);
--color-yellow-dark-1: rgb(245.4418604651, 208.8023255814, 127.5581395349);
--color-olive-dark-1: rgb(128.7950819672, 215.2950819672, 121.7049180328);
--color-green-dark-1: rgb(128.7950819672, 215.2950819672, 121.7049180328);
--color-teal-dark-1: rgb(107.875, 215.125, 197.25);
--color-blue-dark-1: rgb(88.0731707317, 148.9024390244, 247.9268292683);
--color-violet-dark-1: rgb(129.6710526316, 146.3815789474, 253.3289473684);
--color-purple-dark-1: rgb(175.6597938144, 119.206185567, 242.793814433);
--color-pink-dark-1: rgb(237.8169014085, 150.1830985915, 213.7605633803);
--color-brown-dark-1: rgb(231.4761904762, 164.5238095238, 164.5238095238);
--color-black-dark-1: rgb(3.9344262295, 3.9344262295, 6.0655737705);
/* dark 2 variants - produced via Sass scale-color(color, $lightness: -20%) */
--color-red-dark-2: rgb(233.4375, 46.5625, 98.671875);
--color-orange-dark-2: rgb(245.92, 116.984, 37.08);
--color-yellow-dark-2: rgb(241.8837209302, 191.6046511628, 80.1162790698);
--color-olive-dark-2: rgb(91.5901639344, 203.5901639344, 82.4098360656);
--color-green-dark-2: rgb(91.5901639344, 203.5901639344, 82.4098360656);
--color-teal-dark-2: rgb(67.75, 204.25, 181.5);
--color-blue-dark-2: rgb(39.1463414634, 117.8048780488, 245.8536585366);
--color-violet-dark-2: rgb(79.3421052632, 102.7631578947, 252.6578947368);
--color-purple-dark-2: rgb(148.3195876289, 72.412371134, 238.587628866);
--color-pink-dark-2: rgb(230.6338028169, 106.3661971831, 196.5211267606);
--color-brown-dark-2: rgb(220.9523809524, 124.0476190476, 124.0476190476);
--color-black-dark-2: hsl(240, 21.3114754098%, -8.0392156863%);
/* other colors */
--color-gold: #f5e0dc;
--color-white: #cdd6f4;
--color-diff-removed-word-bg: rgba(243, 139, 168, 0.15);
--color-diff-added-word-bg: rgba(166, 227, 161, 0.15);
--color-diff-removed-row-bg: rgba(243, 139, 168, 0.07);
--color-diff-moved-row-bg: rgba(249, 226, 175, 0.07);
--color-diff-added-row-bg: rgba(166, 227, 161, 0.07);
--color-diff-removed-row-border: rgba(243, 139, 168, 0.07);
--color-diff-moved-row-border: rgba(249, 226, 175, 0.07);
--color-diff-added-row-border: rgba(166, 227, 161, 0.07);
--color-diff-inactive: #9399b2;
--color-error-border: #f38ba8;
--color-error-bg: #f38ba8;
--color-error-bg-active: rgb(240.609375, 115.890625, 150.66796875);
--color-error-bg-hover: rgb(238.21875, 92.78125, 133.3359375);
--color-error-text: #11111b;
--color-success-border: rgb(128.7950819672, 215.2950819672, 121.7049180328);
--color-success-bg: #a6e3a1;
--color-success-text: #11111b;
--color-warning-border: rgb(245.4418604651, 208.8023255814, 127.5581395349);
--color-warning-bg: #f9e2af;
--color-warning-text: #11111b;
--color-info-border: rgb(88.0731707317, 148.9024390244, 247.9268292683);
--color-info-bg: #11111b;
--color-info-text: #cdd6f4;
--color-red-badge: rgb(238.21875, 92.78125, 133.3359375);
--color-red-badge-bg: #11111b;
--color-red-badge-hover-bg: rgb(240.609375, 115.890625, 150.66796875);
--color-green-badge: #a6e3a1;
--color-green-badge-bg: #a6e3a1;
--color-green-badge-hover-bg: rgb(147.3975409836, 221.1475409836, 141.3524590164);
--color-yellow-badge: #f9e2af;
--color-yellow-badge-bg: #11111b;
--color-yellow-badge-hover-bg: rgb(247.2209302326, 217.4011627907, 151.2790697674);
--color-orange-badge: #fab387;
--color-orange-badge-bg: #11111b;
--color-orange-badge-hover-bg: rgb(248.98, 163.496, 110.52);
--color-git: #fab387;
--color-highlight-bg: rgba(249, 226, 175, 0.15);
/* target-based colors */
--color-body: #000000;
--color-box-header: #000000;
--color-box-body: #000000;
--color-box-body-highlight: #313244;
--color-text-dark: #a6adc8;
--color-text: #cdd6f4;
--color-text-light: #bac2de;
--color-text-light-1: #bac2de;
--color-text-light-2: #bac2de;
--color-text-light-3: #bac2de;
--color-footer: #000000;
--color-timeline: #313244;
--color-input-text: #cdd6f4;
--color-input-background: #111111;
--color-input-toggle-background: #313244;
--color-input-border: #202020;
--color-input-border-hover: #585b70;
--color-nav-bg: #000000;
--color-nav-hover-bg: var(--color-hover);
--color-navbar: #000000;
--color-navbar-transparent: rgba(17, 17, 27, 0);
--color-light: rgba(88, 91, 112, 0.3);
--color-light-mimic-enabled: rgba(
0,
0,
0,
calc(40 / 255 * 222 / 255 / var(--opacity-disabled))
);
--color-light-border: #585b70;
--color-hover: rgba(108, 112, 134, 0.2);
--color-active: rgba(205, 214, 244, 0.1);
--color-menu: #313244;
--color-card: #313244;
--color-markup-table-row: rgba(205, 214, 244, 0.02);
--color-markup-code-block: rgba(205, 214, 244, 0.05);
--color-markup-code-inline: #313244;
--color-button: #111111;
--color-code-bg: #1e1e2e;
--color-code-sidebar-bg: #313244;
--color-shadow: rgba(17, 17, 27, 0.1);
--color-tooltip-bg: #313244;
--color-tooltip-text: var(--color-text);
--color-secondary-bg: #313244;
--color-text-focus: #cdd6f4;
--color-expand-button: #585b70;
--color-placeholder-text: #a6adc8;
--color-editor-line-highlight: var(--color-primary-light-5);
--color-project-board-bg: var(--color-secondary-light-2);
/* gitea source code: */
/* should ideally be --color-text-dark, see go-gitea/gitea#15651 */
--color-caret: var(--color-text);
--color-reaction-bg: rgba(205, 214, 244, 0.07);
--color-reaction-active-bg: var(--color-primary-alpha-40);
--color-header-wrapper: #181825;
--color-header-wrapper-transparent: rgba(24, 24, 37, 0);
--color-label-text: #11111b;
--color-label-bg: #94e2d5;
--color-label-hover-bg: rgb(123.925, 219.475, 203.55);
--color-label-active-bg: rgb(135.9625, 222.7375, 208.275);
--color-accent: var(--color-primary-light-1);
--color-small-accent: var(--color-primary-light-5);
--color-active-line: #202020;
}
/* invert emojis that are hard to read otherwise */
.emoji[aria-label="check mark"],
.emoji[aria-label="currency exchange"],
.emoji[aria-label="TOP arrow"],
.emoji[aria-label="END arrow"],
.emoji[aria-label="ON! arrow"],
.emoji[aria-label="SOON arrow"],
.emoji[aria-label="heavy dollar sign"],
.emoji[aria-label=copyright],
.emoji[aria-label=registered],
.emoji[aria-label="trade mark"],
.emoji[aria-label=multiply],
.emoji[aria-label=plus],
.emoji[aria-label=minus],
.emoji[aria-label=divide],
.emoji[aria-label="curly loop"],
.emoji[aria-label="double curly loop"],
.emoji[aria-label="wavy dash"],
.emoji[aria-label="paw prints"],
.emoji[aria-label="musical note"],
.emoji[aria-label="musical notes"] {
filter: invert(100%) hue-rotate(180deg);
}
.ui.ui.ui.button:not(.inverted, .basic).primary, .ui.ui.ui.button:not(.inverted, .basic).green, .ui.ui.ui.button:not(.inverted, .basic).red, .ui.ui.ui.button:not(.inverted, .basic).teal,
.ui.ui.ui.label:not(.inverted, .basic).primary,
.ui.ui.ui.label:not(.inverted, .basic).green,
.ui.ui.ui.label:not(.inverted, .basic).red,
.ui.ui.ui.label:not(.inverted, .basic).teal {
color: #11111b;
}
.ui.ui.ui.button:not(.inverted, .basic).primary:hover, .ui.ui.ui.button:not(.inverted, .basic).green:hover, .ui.ui.ui.button:not(.inverted, .basic).red:hover, .ui.ui.ui.button:not(.inverted, .basic).teal:hover,
.ui.ui.ui.label:not(.inverted, .basic).primary:hover,
.ui.ui.ui.label:not(.inverted, .basic).green:hover,
.ui.ui.ui.label:not(.inverted, .basic).red:hover,
.ui.ui.ui.label:not(.inverted, .basic).teal:hover {
color: #1e1e2e;
}
.ui.basic.modal {
background-color: #1e1e2e;
}
.ui.commit-header-row .svg.gitea-lock ~ a {
color: #11111b;
}
.ui.negative.message .header {
color: var(--color-error-text);
}
.ui.sha.isSigned.isVerified .shortsha {
color: #11111b;
}
.ui.sha.isSigned.isVerified svg.gitea-lock {
fill: #11111b;
}
.ui.basic.modal,
.ui.basic.modal > .header,
.ui.inverted.button {
color: #cdd6f4 !important;
}
#repo-topics,
#topic_edit > .ui.selection.dropdown {
color: var(--color-label-text) !important;
}
blockquote.attention-tip {
border-left-color: var(--color-success-bg);
}
blockquote.attention-warning {
border-left-color: var(--color-warning-bg);
}
svg.attention-tip,
strong.attention-tip {
color: var(--color-success-bg);
}
svg.attention-warning,
strong.attention-warning {
color: var(--color-warning-bg);
}
.inline-code-block {
color: #11111b;
}
::selection {
background: rgba(148, 226, 213, 0.3) !important;
}
/* NameBuiltinPseudo */
.chroma .bp {
color: #fab387;
}
/* Comment */
.chroma .c {
color: #6c7086;
}
/* CommentSingle */
.chroma .c1 {
color: #6c7086;
}
/* CommentHashbang */
.chroma .ch {
color: #6c7086;
}
/* CommentMultiline */
.chroma .cm {
color: #6c7086;
}
/* CommentPreproc */
.chroma .cp {
color: #89b4fa;
}
/* CommentPreprocFile */
.chroma .cpf {
color: #89b4fa;
}
/* CommentSpecial */
.chroma .cs {
color: #6c7086;
}
/* LiteralStringDelimiter */
.chroma .dl {
color: #89b4fa;
}
/* NameFunctionMagic */
/* Generic */
/* GenericDeleted */
.chroma .gd {
color: #cdd6f4;
background-color: rgba(243, 139, 168, 0.15);
}
/* GenericEmph */
.chroma .ge {
font-style: italic;
}
/* GenericHeading */
.chroma .gh {
color: #89dceb;
}
/* GenericInserted */
.chroma .gi {
color: #cdd6f4;
background-color: rgba(166, 227, 161, 0.15);
}
/* GenericUnderline */
/* GenericOutput */
.chroma .go {
color: #fab387;
}
/* GenericPrompt */
.chroma .gp {
color: #6c7086;
font-weight: bold;
}
/* GenericError */
.chroma .gr {
color: #eba0ac;
}
/* GenericStrong */
.chroma .gs {
font-weight: bold;
}
/* GenericTraceback */
.chroma .gt {
color: #eba0ac;
}
/* GenericSubheading */
.chroma .gu {
color: #89dceb;
}
/* LiteralNumberIntegerLong */
.chroma .il {
color: #fab387;
}
/* Keyword */
.chroma .k {
color: #cba6f7;
}
/* KeywordConstant */
.chroma .kc {
color: #f9e2af;
}
/* KeywordDeclaration */
.chroma .kd {
color: #cba6f7;
}
/* KeywordNamespace */
.chroma .kn {
color: #f9e2af;
}
/* KeywordPseudo */
.chroma .kp {
color: #cba6f7;
font-weight: bold;
}
/* KeywordReserved */
.chroma .kr {
color: #cba6f7;
}
/* KeywordType */
.chroma .kt {
color: #f9e2af;
}
/* Literal */
/* LiteralDate */
/* LiteralNumber */
.chroma .m {
color: #fab387;
}
/* LiteralNumberBin */
.chroma .mb {
color: #fab387;
}
/* LiteralNumberFloat */
.chroma .mf {
color: #fab387;
}
/* LiteralNumberHex */
.chroma .mh {
color: #fab387;
}
/* LiteralNumberInteger */
.chroma .mi {
color: #fab387;
}
/* LiteralNumberOct */
.chroma .mo {
color: #fab387;
}
/* Name */
.chroma .n {
color: #b4befe;
}
/* NameAttribute */
.chroma .na {
color: #f9e2af;
}
/* NameBuiltin */
.chroma .nb {
color: #fab387;
}
/* NameClass */
.chroma .nc {
color: #f9e2af;
}
/* NameDecorator */
.chroma .nd {
color: #f5c2e7;
}
/* NameException */
.chroma .ne {
color: #eba0ac;
}
/* NameFunction */
.chroma .nf {
color: #89b4fa;
}
/* NameEntity */
.chroma .ni {
color: #f5c2e7;
}
/* NameLabel */
.chroma .nl {
color: #f9e2af;
}
/* NameNamespace */
.chroma .nn {
color: #f9e2af;
}
/* NameConstant */
.chroma .no {
color: #f9e2af;
}
/* NameTag */
.chroma .nt {
color: #cba6f7;
}
/* NameVariable */
.chroma .nv {
color: #fab387;
}
/* NameOther */
.chroma .nx {
color: #fab387;
}
/* Operator */
.chroma .o {
color: #89dceb;
}
/* OperatorWord */
.chroma .ow {
color: #89dceb;
font-weight: bold;
}
/* Punctuation */
.chroma .p {
color: #9399b2;
}
/* NameProperty */
/* LiteralString */
.chroma .s {
color: #a6e3a1;
}
/* LiteralStringSingle */
.chroma .s1 {
color: #a6e3a1;
}
/* LiteralStringDouble */
.chroma .s2 {
color: #a6e3a1;
}
/* LiteralStringAffix */
.chroma .sa {
color: #a6e3a1;
}
/* LiteralStringBacktick */
.chroma .sb {
color: #a6e3a1;
}
/* LiteralStringChar */
.chroma .sc {
color: #a6e3a1;
}
/* LiteralStringDoc */
.chroma .sd {
color: #a6e3a1;
}
/* LiteralStringEscape */
.chroma .se {
color: #89b4fa;
}
/* LiteralStringHeredoc */
.chroma .sh {
color: #a6e3a1;
}
/* LiteralStringInterpol */
.chroma .si {
color: #a6e3a1;
}
/* LiteralStringRegex */
.chroma .sr {
color: #89b4fa;
}
/* LiteralStringSymbol */
.chroma .ss {
color: #a6e3a1;
}
/* LiteralStringOther */
.chroma .sx {
color: #a6e3a1;
}
/* NameVariableClass */
.chroma .vc {
color: #f9e2af;
}
/* NameVariableGlobal */
.chroma .vg {
color: #fab387;
}
/* NameVariableInstance */
.chroma .vi {
color: #f9e2af;
}
/* NameVariableMagic */
/* TextWhitespace */
.chroma .w {
color: #313244;
}
.CodeMirror .cm-property,
.CodeMirror.cm-s-default .cm-property,
.CodeMirror.cm-s-paper .cm-property {
color: #cdd6f4;
}
.CodeMirror .cm-header,
.CodeMirror.cm-s-default .cm-header,
.CodeMirror.cm-s-paper .cm-header {
color: #cdd6f4;
}
.CodeMirror .cm-quote,
.CodeMirror.cm-s-default .cm-quote,
.CodeMirror.cm-s-paper .cm-quote {
color: #a6e3a1;
}
.CodeMirror .cm-keyword,
.CodeMirror.cm-s-default .cm-keyword,
.CodeMirror.cm-s-paper .cm-keyword {
color: #cba6f7;
}
.CodeMirror .cm-atom,
.CodeMirror.cm-s-default .cm-atom,
.CodeMirror.cm-s-paper .cm-atom {
color: #f38ba8;
}
.CodeMirror .cm-number,
.CodeMirror.cm-s-default .cm-number,
.CodeMirror.cm-s-paper .cm-number {
color: #fab387;
}
.CodeMirror .cm-def,
.CodeMirror.cm-s-default .cm-def,
.CodeMirror.cm-s-paper .cm-def {
color: #cdd6f4;
}
.CodeMirror .cm-variable-2,
.CodeMirror.cm-s-default .cm-variable-2,
.CodeMirror.cm-s-paper .cm-variable-2 {
color: #89dceb;
}
.CodeMirror .cm-variable-3,
.CodeMirror.cm-s-default .cm-variable-3,
.CodeMirror.cm-s-paper .cm-variable-3 {
color: #94e2d5;
}
.CodeMirror .cm-comment,
.CodeMirror.cm-s-default .cm-comment,
.CodeMirror.cm-s-paper .cm-comment {
color: #585b70;
}
.CodeMirror .cm-string,
.CodeMirror.cm-s-default .cm-string,
.CodeMirror.cm-s-paper .cm-string {
color: #a6e3a1;
}
.CodeMirror .cm-string-2,
.CodeMirror.cm-s-default .cm-string-2,
.CodeMirror.cm-s-paper .cm-string-2 {
color: #a6e3a1;
}
.CodeMirror .cm-meta,
.CodeMirror.cm-s-default .cm-meta,
.CodeMirror.cm-s-paper .cm-meta {
color: #fab387;
}
.CodeMirror .cm-qualifier,
.CodeMirror.cm-s-default .cm-qualifier,
.CodeMirror.cm-s-paper .cm-qualifier {
color: #fab387;
}
.CodeMirror .cm-builtin,
.CodeMirror.cm-s-default .cm-builtin,
.CodeMirror.cm-s-paper .cm-builtin {
color: #fab387;
}
.CodeMirror .cm-bracket,
.CodeMirror.cm-s-default .cm-bracket,
.CodeMirror.cm-s-paper .cm-bracket {
color: #cdd6f4;
}
.CodeMirror .cm-tag,
.CodeMirror.cm-s-default .cm-tag,
.CodeMirror.cm-s-paper .cm-tag {
color: #f9e2af;
}
.CodeMirror .cm-attribute,
.CodeMirror.cm-s-default .cm-attribute,
.CodeMirror.cm-s-paper .cm-attribute {
color: #f9e2af;
}
.CodeMirror .cm-hr,
.CodeMirror.cm-s-default .cm-hr,
.CodeMirror.cm-s-paper .cm-hr {
color: #9399b2;
}
.CodeMirror .cm-url,
.CodeMirror.cm-s-default .cm-url,
.CodeMirror.cm-s-paper .cm-url {
color: #89b4fa;
}
.CodeMirror .cm-link,
.CodeMirror.cm-s-default .cm-link,
.CodeMirror.cm-s-paper .cm-link {
color: #89b4fa;
}
.CodeMirror .cm-error,
.CodeMirror.cm-s-default .cm-error,
.CodeMirror.cm-s-paper .cm-error {
color: #f38ba8;
}
.monaco-editor .selected-text {
background-color: #313244 !important;
}
.monaco-editor .margin-view-overlays .line-numbers {
color: #a6adc8 !important;
}
.monaco-editor .line-numbers.active-line-number {
color: #94e2d5 !important;
}
.monaco-editor .view-overlays .current-line,
.monaco-editor .margin-view-overlays .current-line-margin {
background-color: rgb(42.16, 42.8, 60.08) !important;
}
.monaco-editor .mtk1 {
color: #cdd6f4 !important;
}
.monaco-editor .mtk2 {
color: #ff69b4 !important;
}
.monaco-editor .mtk3 {
color: #fab387 !important;
}
.monaco-editor .mtk4 {
color: #94e2d5 !important;
}
.monaco-editor .mtk5 {
color: #cdd6f4 !important;
}
.monaco-editor .mtk6 {
color: #cba6f7 !important;
}
.monaco-editor .mtk7 {
color: #fab387 !important;
}
.monaco-editor .mtk8 {
color: #9399b2 !important;
}
.monaco-editor .mtk9 {
color: #cba6f7 !important;
}
.monaco-editor .mtk10 {
color: #a6adc8 !important;
}
.monaco-editor .mtk11 {
color: #94e2d5 !important;
}
.monaco-editor .mtk12 {
color: #94e2d5 !important;
}
.monaco-editor .mtk13 {
color: #ff69b4 !important;
}
.monaco-editor .mtk14 {
color: #ff69b4 !important;
}
.monaco-editor .mtk15 {
color: #cba6f7 !important;
}
.monaco-editor .mtk16 {
color: #9399b2 !important;
}
.monaco-editor .mtk17 {
color: #ff69b4 !important;
}
.monaco-editor .mtk18 {
color: #ff69b4 !important;
}
.monaco-editor .mtk19 {
color: #94e2d5 !important;
}
.monaco-editor .mtk20 {
color: #ff69b4 !important;
}
.monaco-editor .mtk21 {
color: #a6e3a1 !important;
}
.monaco-editor .mtk22 {
color: #ff69b4 !important;
}
.monaco-editor .mtk23 {
color: #89b4fa !important;
}
.monaco-editor .mtk24 {
color: #fab387 !important;
}
.monaco-editor .mtk25 {
color: #f5c2e7 !important;
}
.monaco-editor .bracket-highlighting-0 {
color: rgb(227.8, 169, 198.4) !important;
}
.monaco-editor .bracket-highlighting-1 {
color: rgb(232, 193, 178.6) !important;
}
.monaco-editor .bracket-highlighting-2 {
color: rgb(231.4, 221.2, 202.6) !important;
}
.monaco-editor .bracket-highlighting-3 {
color: rgb(181.6, 221.8, 194.2) !important;
}
.monaco-editor .bracket-highlighting-4 {
color: rgb(164.2, 193.6, 247.6) !important;
}
.monaco-editor .bracket-highlighting-5 {
color: rgb(203.8, 185.2, 245.8) !important;
}

View file

@ -0,0 +1,889 @@
@import url('https://fonts.googleapis.com/css2?family=Sono&display=swap');
/* hide bloated -------------- */
#navbar,
.page-footer {
display: none !important;
}
.user.profile .ui.card .profile-avatar-name {
display: none !important;
}
.user.profile .ui.card .extra.content {
display: none !important;
}
.user.profile .ui.card #profile-avatar {
padding: 1rem
}
.repo-buttons {
display: none !important;
}
.ui.menu a.item[href="/explore/users"] {
display: none !important;
}
.ui.menu a.item[href="/explore/organizations"] {
display: none !important;
}
a.flex-text-inline {
display: none !important;
}
/* --------------------------- */
:root {
--fonts-override: "Sono";
color-scheme: light;
--is-dark-theme: false;
accent-color: #179299;
--color-primary: #179299;
--color-primary-contrast: #eff1f5;
--color-primary-hover: rgb(26.3323863636, 167.1534090909, 175.1676136364);
--color-primary-dark-1: rgb(24.9994318182, 158.6920454545, 166.3005681818);
--color-primary-dark-2: rgb(26.9988636364, 171.3840909091, 179.6011363636);
--color-primary-dark-3: rgb(28.9982954545, 184.0761363636, 192.9017045455);
--color-primary-dark-4: rgb(30.9977272727, 196.7681818182, 206.2022727273);
--color-primary-dark-5: rgb(32.9971590909, 209.4602272727, 219.5028409091);
--color-primary-dark-6: rgb(44.4511363636, 213.7159090909, 223.3488636364);
--color-primary-dark-7: rgb(57.7517045455, 216.3238636364, 225.3482954545);
--color-primary-light-1: rgb(21.0005681818, 133.3079545455, 139.6994318182);
--color-primary-light-2: rgb(19.0011363636, 120.6159090909, 126.3988636364);
--color-primary-light-3: rgb(17.0017045455, 107.9238636364, 113.0982954545);
--color-primary-light-4: rgb(15.0022727273, 95.2318181818, 99.7977272727);
--color-primary-light-5: rgb(13.0028409091, 82.5397727273, 86.4971590909);
--color-primary-light-6: rgb(11.0034090909, 69.8477272727, 73.1965909091);
--color-primary-light-7: rgb(9.0039772727, 57.1556818182, 59.8960227273);
--color-primary-alpha-10: rgba(23, 146, 153, 0.1);
--color-primary-alpha-20: rgba(23, 146, 153, 0.2);
--color-primary-alpha-30: rgba(23, 146, 153, 0.3);
--color-primary-alpha-40: rgba(23, 146, 153, 0.4);
--color-primary-alpha-50: rgba(23, 146, 153, 0.5);
--color-primary-alpha-60: rgba(23, 146, 153, 0.6);
--color-primary-alpha-70: rgba(23, 146, 153, 0.7);
--color-primary-alpha-80: rgba(23, 146, 153, 0.8);
--color-primary-alpha-90: rgba(23, 146, 153, 0.9);
--color-secondary: #bcc0cc;
--color-secondary-dark-1: rgb(195.1329545455, 199.8284090909, 211.5670454545);
--color-secondary-dark-2: rgb(186.2659090909, 191.6568181818, 205.1340909091);
--color-secondary-dark-3: rgb(177.3988636364, 183.4852272727, 198.7011363636);
--color-secondary-dark-4: rgb(168.5318181818, 175.3136363636, 192.2681818182);
--color-secondary-dark-5: rgb(159.6647727273, 167.1420454545, 185.8352272727);
--color-secondary-dark-6: rgb(150.7977272727, 158.9704545455, 179.4022727273);
--color-secondary-dark-7: rgb(141.9306818182, 150.7988636364, 172.9693181818);
--color-secondary-dark-8: rgb(133.0636363636, 142.6272727273, 166.5363636364);
--color-secondary-dark-9: rgb(124.1965909091, 134.4556818182, 160.1034090909);
--color-secondary-dark-10: rgb(115.3295454545, 126.2840909091, 153.6704545455);
--color-secondary-dark-11: rgb(106.6693181818, 118.2011363636, 147.0306818182);
--color-secondary-dark-12: rgb(100.2363636364, 111.0727272727, 138.1636363636);
--color-secondary-dark-13: rgb(93.8034090909, 103.9443181818, 129.2965909091);
--color-secondary-light-1: rgb(212.8670454545, 216.1715909091, 224.4329545455);
--color-secondary-light-2: rgb(221.7340909091, 224.3431818182, 230.8659090909);
--color-secondary-light-3: rgb(230.6011363636, 232.5147727273, 237.2988636364);
--color-secondary-light-4: rgb(239.4681818182, 240.6863636364, 243.7318181818);
--color-secondary-alpha-10: rgba(204, 208, 218, 0.1);
--color-secondary-alpha-20: rgba(204, 208, 218, 0.2);
--color-secondary-alpha-30: rgba(204, 208, 218, 0.3);
--color-secondary-alpha-40: rgba(204, 208, 218, 0.4);
--color-secondary-alpha-50: rgba(204, 208, 218, 0.5);
--color-secondary-alpha-60: rgba(204, 208, 218, 0.6);
--color-secondary-alpha-70: rgba(204, 208, 218, 0.7);
--color-secondary-alpha-80: rgba(204, 208, 218, 0.8);
--color-secondary-alpha-90: rgba(204, 208, 218, 0.9);
/* colors */
--color-red: #d20f39;
--color-orange: #fe640b;
--color-yellow: #df8e1d;
--color-olive: #40a02b;
--color-green: #40a02b;
--color-teal: #179299;
--color-blue: #1e66f5;
--color-violet: #7287fd;
--color-purple: #8839ef;
--color-pink: #ea76cb;
--color-brown: #dd7878;
--color-grey: #7c7f93;
--color-black: #e6e9ef;
/* light variants - produced via Sass scale-color(color, $lightness: -10%) */
--color-red-light: rgb(239.4, 36.6, 80.28);
--color-orange-light: rgb(254.2081632653, 132.2653061224, 61.7918367347);
--color-yellow-light: rgb(231.1785714286, 164.6428571429, 71.8214285714);
--color-olive-light: rgb(80.078817734, 200.197044335, 53.802955665);
--color-green-light: rgb(80.078817734, 200.197044335, 53.802955665);
--color-teal-light: rgb(29.6647727273, 188.3068181818, 197.3352272727);
--color-blue-light: rgb(78.829787234, 135.2042553191, 247.170212766);
--color-violet-light: rgb(164.2867132867, 177.7972027972, 253.7132867133);
--color-purple-light: rgb(164.3598130841, 104.1869158879, 242.8130841121);
--color-pink-light: rgb(240.7784810127, 162.2215189873, 219.7848101266);
--color-brown-light: rgb(231.2603550296, 160.7396449704, 160.7396449704);
--color-grey-light: rgb(151.9539748954, 154.3138075314, 170.0460251046);
--color-black-light: hsl(220, 21.9512195122%, 101.9607843137%);
/* dark 1 variants - produced via Sass scale-color(color, $lightness: -10%) */
--color-red-dark-1: rgb(239.4, 36.6, 80.28);
--color-orange-dark-1: rgb(254.2081632653, 132.2653061224, 61.7918367347);
--color-yellow-dark-1: rgb(231.1785714286, 164.6428571429, 71.8214285714);
--color-olive-dark-1: rgb(80.078817734, 200.197044335, 53.802955665);
--color-green-dark-1: rgb(80.078817734, 200.197044335, 53.802955665);
--color-teal-dark-1: rgb(29.6647727273, 188.3068181818, 197.3352272727);
--color-blue-dark-1: rgb(78.829787234, 135.2042553191, 247.170212766);
--color-violet-dark-1: rgb(164.2867132867, 177.7972027972, 253.7132867133);
--color-purple-dark-1: rgb(164.3598130841, 104.1869158879, 242.8130841121);
--color-pink-dark-1: rgb(240.7784810127, 162.2215189873, 219.7848101266);
--color-brown-dark-1: rgb(231.2603550296, 160.7396449704, 160.7396449704);
--color-black-dark-1: hsl(220, 21.9512195122%, 101.9607843137%);
/* dark 2 variants - produced via Sass scale-color(color, $lightness: -20%) */
--color-red-dark-2: rgb(242.8, 84.2, 118.36);
--color-orange-dark-2: rgb(254.4163265306, 164.5306122449, 112.5836734694);
--color-yellow-dark-2: rgb(237.0476190476, 186.9047619048, 116.9523809524);
--color-olive-dark-2: rgb(114.6305418719, 211.5763546798, 93.4236453202);
--color-green-dark-2: rgb(114.6305418719, 211.5763546798, 93.4236453202);
--color-teal-dark-2: rgb(53.3181818182, 215.4545454545, 224.6818181818);
--color-blue-dark-2: rgb(127.6595744681, 168.4085106383, 249.3404255319);
--color-violet-dark-2: rgb(214.5734265734, 220.5944055944, 254.4265734266);
--color-purple-dark-2: rgb(192.7196261682, 151.3738317757, 246.6261682243);
--color-pink-dark-2: rgb(247.5569620253, 206.4430379747, 236.5696202532);
--color-brown-dark-2: rgb(241.5207100592, 201.4792899408, 201.4792899408);
--color-black-dark-2: hsl(220, 21.9512195122%, 111.9607843137%);
/* other colors */
--color-gold: #dc8a78;
--color-white: #4c4f69;
--color-diff-removed-word-bg: rgba(210, 15, 57, 0.15);
--color-diff-added-word-bg: rgba(64, 160, 43, 0.15);
--color-diff-removed-row-bg: rgba(210, 15, 57, 0.07);
--color-diff-moved-row-bg: rgba(223, 142, 29, 0.07);
--color-diff-added-row-bg: rgba(64, 160, 43, 0.07);
--color-diff-removed-row-border: rgba(210, 15, 57, 0.07);
--color-diff-moved-row-border: rgba(223, 142, 29, 0.07);
--color-diff-added-row-border: rgba(64, 160, 43, 0.07);
--color-diff-inactive: #7c7f93;
--color-error-border: #d20f39;
--color-error-bg: #d20f39;
--color-error-bg-active: rgb(233.8, 16.7, 63.46);
--color-error-bg-hover: rgb(239.4, 36.6, 80.28);
--color-error-text: #eff1f5;
--color-success-border: rgb(80.078817734, 200.197044335, 53.802955665);
--color-success-bg: #40a02b;
--color-success-text: #eff1f5;
--color-warning-border: rgb(231.1785714286, 164.6428571429, 71.8214285714);
--color-warning-bg: #df8e1d;
--color-warning-text: #eff1f5;
--color-info-border: rgb(78.829787234, 135.2042553191, 247.170212766);
--color-info-bg: #eff1f5;
--color-info-text: #4c4f69;
--color-red-badge: rgb(239.4, 36.6, 80.28);
--color-red-badge-bg: #eff1f5;
--color-red-badge-hover-bg: rgb(233.8, 16.7, 63.46);
--color-green-badge: #40a02b;
--color-green-badge-bg: #40a02b;
--color-green-badge-hover-bg: rgb(72.039408867, 180.0985221675, 48.4014778325);
--color-yellow-badge: #df8e1d;
--color-yellow-badge-bg: #eff1f5;
--color-yellow-badge-hover-bg: rgb(228.244047619, 153.5119047619, 49.255952381);
--color-orange-badge: #fe640b;
--color-orange-badge-bg: #eff1f5;
--color-orange-badge-hover-bg: rgb(254.1040816327, 116.1326530612, 36.3959183673);
--color-git: #fe640b;
--color-highlight-bg: rgba(223, 142, 29, 0.15);
/* target-based colors */
--color-body: #eff1f5;
--color-box-header: #e6e9ef;
--color-box-body: #e6e9ef;
--color-box-body-highlight: #ccd0da;
--color-text-dark: #6c6f85;
--color-text: #4c4f69;
--color-text-light: #5c5f77;
--color-text-light-1: #5c5f77;
--color-text-light-2: #5c5f77;
--color-text-light-3: #5c5f77;
--color-footer: #e6e9ef;
--color-timeline: #ccd0da;
--color-input-text: #4c4f69;
--color-input-background: #ccd0da;
--color-input-toggle-background: #ccd0da;
--color-input-border: #bcc0cc;
--color-input-border-hover: #acb0be;
--color-nav-bg: #e6e9ef;
--color-nav-hover-bg: var(--color-hover);
--color-navbar: #e6e9ef;
--color-navbar-transparent: rgba(239, 241, 245, 0);
--color-light: rgba(172, 176, 190, 0.3);
--color-light-mimic-enabled: rgba(
0,
0,
0,
calc(40 / 255 * 222 / 255 / var(--opacity-disabled))
);
--color-light-border: #acb0be;
--color-hover: rgba(156, 160, 176, 0.2);
--color-active: rgba(76, 79, 105, 0.1);
--color-menu: #ccd0da;
--color-card: #ccd0da;
--color-markup-table-row: rgba(76, 79, 105, 0.02);
--color-markup-code-block: rgba(76, 79, 105, 0.05);
--color-markup-code-inline: #ccd0da;
--color-button: #ccd0da;
--color-code-bg: #eff1f5;
--color-code-sidebar-bg: #ccd0da;
--color-shadow: rgba(239, 241, 245, 0.1);
--color-tooltip-bg: #ccd0da;
--color-tooltip-text: var(--color-text);
--color-secondary-bg: #ccd0da;
--color-text-focus: #4c4f69;
--color-expand-button: #acb0be;
--color-placeholder-text: #6c6f85;
--color-editor-line-highlight: var(--color-primary-light-5);
--color-project-board-bg: var(--color-secondary-light-2);
/* gitea source code: */
/* should ideally be --color-text-dark, see go-gitea/gitea#15651 */
--color-caret: var(--color-text);
--color-reaction-bg: rgba(76, 79, 105, 0.07);
--color-reaction-active-bg: var(--color-primary-alpha-40);
--color-header-wrapper: #e6e9ef;
--color-header-wrapper-transparent: rgba(230, 233, 239, 0);
--color-label-text: #dce0e8;
--color-label-bg: #179299;
--color-label-hover-bg: rgb(26.9988636364, 171.3840909091, 179.6011363636);
--color-label-active-bg: rgb(24.9994318182, 158.6920454545, 166.3005681818);
--color-accent: var(--color-primary-light-1);
--color-small-accent: var(--color-primary-light-5);
--color-active-line: #bcc0cc;
}
.ui.ui.ui.button:not(.inverted, .basic).primary, .ui.ui.ui.button:not(.inverted, .basic).green, .ui.ui.ui.button:not(.inverted, .basic).red, .ui.ui.ui.button:not(.inverted, .basic).teal,
.ui.ui.ui.label:not(.inverted, .basic).primary,
.ui.ui.ui.label:not(.inverted, .basic).green,
.ui.ui.ui.label:not(.inverted, .basic).red,
.ui.ui.ui.label:not(.inverted, .basic).teal {
color: #eff1f5;
}
.ui.ui.ui.button:not(.inverted, .basic).primary:hover, .ui.ui.ui.button:not(.inverted, .basic).green:hover, .ui.ui.ui.button:not(.inverted, .basic).red:hover, .ui.ui.ui.button:not(.inverted, .basic).teal:hover,
.ui.ui.ui.label:not(.inverted, .basic).primary:hover,
.ui.ui.ui.label:not(.inverted, .basic).green:hover,
.ui.ui.ui.label:not(.inverted, .basic).red:hover,
.ui.ui.ui.label:not(.inverted, .basic).teal:hover {
color: #dce0e8;
}
.ui.basic.modal {
background-color: #dce0e8;
}
.ui.commit-header-row .svg.gitea-lock ~ a {
color: #eff1f5;
}
.ui.negative.message .header {
color: var(--color-error-text);
}
.ui.sha.isSigned.isVerified .shortsha {
color: #eff1f5;
}
.ui.sha.isSigned.isVerified svg.gitea-lock {
fill: #eff1f5;
}
.ui.basic.modal,
.ui.basic.modal > .header,
.ui.inverted.button {
color: #4c4f69 !important;
}
#repo-topics,
#topic_edit > .ui.selection.dropdown {
color: var(--color-label-text) !important;
}
blockquote.attention-tip {
border-left-color: var(--color-success-bg);
}
blockquote.attention-warning {
border-left-color: var(--color-warning-bg);
}
svg.attention-tip,
strong.attention-tip {
color: var(--color-success-bg);
}
svg.attention-warning,
strong.attention-warning {
color: var(--color-warning-bg);
}
.inline-code-block {
color: #dce0e8;
}
::selection {
background: rgba(23, 146, 153, 0.3) !important;
}
/* NameBuiltinPseudo */
.chroma .bp {
color: #fe640b;
}
/* Comment */
.chroma .c {
color: #9ca0b0;
}
/* CommentSingle */
.chroma .c1 {
color: #9ca0b0;
}
/* CommentHashbang */
.chroma .ch {
color: #9ca0b0;
}
/* CommentMultiline */
.chroma .cm {
color: #9ca0b0;
}
/* CommentPreproc */
.chroma .cp {
color: #1e66f5;
}
/* CommentPreprocFile */
.chroma .cpf {
color: #1e66f5;
}
/* CommentSpecial */
.chroma .cs {
color: #9ca0b0;
}
/* LiteralStringDelimiter */
.chroma .dl {
color: #1e66f5;
}
/* NameFunctionMagic */
/* Generic */
/* GenericDeleted */
.chroma .gd {
color: #4c4f69;
background-color: rgba(210, 15, 57, 0.15);
}
/* GenericEmph */
.chroma .ge {
font-style: italic;
}
/* GenericHeading */
.chroma .gh {
color: #04a5e5;
}
/* GenericInserted */
.chroma .gi {
color: #4c4f69;
background-color: rgba(64, 160, 43, 0.15);
}
/* GenericUnderline */
/* GenericOutput */
.chroma .go {
color: #fe640b;
}
/* GenericPrompt */
.chroma .gp {
color: #9ca0b0;
font-weight: bold;
}
/* GenericError */
.chroma .gr {
color: #e64553;
}
/* GenericStrong */
.chroma .gs {
font-weight: bold;
}
/* GenericTraceback */
.chroma .gt {
color: #e64553;
}
/* GenericSubheading */
.chroma .gu {
color: #04a5e5;
}
/* LiteralNumberIntegerLong */
.chroma .il {
color: #fe640b;
}
/* Keyword */
.chroma .k {
color: #8839ef;
}
/* KeywordConstant */
.chroma .kc {
color: #df8e1d;
}
/* KeywordDeclaration */
.chroma .kd {
color: #8839ef;
}
/* KeywordNamespace */
.chroma .kn {
color: #df8e1d;
}
/* KeywordPseudo */
.chroma .kp {
color: #8839ef;
font-weight: bold;
}
/* KeywordReserved */
.chroma .kr {
color: #8839ef;
}
/* KeywordType */
.chroma .kt {
color: #df8e1d;
}
/* Literal */
/* LiteralDate */
/* LiteralNumber */
.chroma .m {
color: #fe640b;
}
/* LiteralNumberBin */
.chroma .mb {
color: #fe640b;
}
/* LiteralNumberFloat */
.chroma .mf {
color: #fe640b;
}
/* LiteralNumberHex */
.chroma .mh {
color: #fe640b;
}
/* LiteralNumberInteger */
.chroma .mi {
color: #fe640b;
}
/* LiteralNumberOct */
.chroma .mo {
color: #fe640b;
}
/* Name */
.chroma .n {
color: #7287fd;
}
/* NameAttribute */
.chroma .na {
color: #df8e1d;
}
/* NameBuiltin */
.chroma .nb {
color: #fe640b;
}
/* NameClass */
.chroma .nc {
color: #df8e1d;
}
/* NameDecorator */
.chroma .nd {
color: #ea76cb;
}
/* NameException */
.chroma .ne {
color: #e64553;
}
/* NameFunction */
.chroma .nf {
color: #1e66f5;
}
/* NameEntity */
.chroma .ni {
color: #ea76cb;
}
/* NameLabel */
.chroma .nl {
color: #df8e1d;
}
/* NameNamespace */
.chroma .nn {
color: #df8e1d;
}
/* NameConstant */
.chroma .no {
color: #df8e1d;
}
/* NameTag */
.chroma .nt {
color: #8839ef;
}
/* NameVariable */
.chroma .nv {
color: #fe640b;
}
/* NameOther */
.chroma .nx {
color: #fe640b;
}
/* Operator */
.chroma .o {
color: #04a5e5;
}
/* OperatorWord */
.chroma .ow {
color: #04a5e5;
font-weight: bold;
}
/* Punctuation */
.chroma .p {
color: #7c7f93;
}
/* NameProperty */
/* LiteralString */
.chroma .s {
color: #40a02b;
}
/* LiteralStringSingle */
.chroma .s1 {
color: #40a02b;
}
/* LiteralStringDouble */
.chroma .s2 {
color: #40a02b;
}
/* LiteralStringAffix */
.chroma .sa {
color: #40a02b;
}
/* LiteralStringBacktick */
.chroma .sb {
color: #40a02b;
}
/* LiteralStringChar */
.chroma .sc {
color: #40a02b;
}
/* LiteralStringDoc */
.chroma .sd {
color: #40a02b;
}
/* LiteralStringEscape */
.chroma .se {
color: #1e66f5;
}
/* LiteralStringHeredoc */
.chroma .sh {
color: #40a02b;
}
/* LiteralStringInterpol */
.chroma .si {
color: #40a02b;
}
/* LiteralStringRegex */
.chroma .sr {
color: #1e66f5;
}
/* LiteralStringSymbol */
.chroma .ss {
color: #40a02b;
}
/* LiteralStringOther */
.chroma .sx {
color: #40a02b;
}
/* NameVariableClass */
.chroma .vc {
color: #df8e1d;
}
/* NameVariableGlobal */
.chroma .vg {
color: #fe640b;
}
/* NameVariableInstance */
.chroma .vi {
color: #df8e1d;
}
/* NameVariableMagic */
/* TextWhitespace */
.chroma .w {
color: #ccd0da;
}
.CodeMirror .cm-property,
.CodeMirror.cm-s-default .cm-property,
.CodeMirror.cm-s-paper .cm-property {
color: #4c4f69;
}
.CodeMirror .cm-header,
.CodeMirror.cm-s-default .cm-header,
.CodeMirror.cm-s-paper .cm-header {
color: #4c4f69;
}
.CodeMirror .cm-quote,
.CodeMirror.cm-s-default .cm-quote,
.CodeMirror.cm-s-paper .cm-quote {
color: #40a02b;
}
.CodeMirror .cm-keyword,
.CodeMirror.cm-s-default .cm-keyword,
.CodeMirror.cm-s-paper .cm-keyword {
color: #8839ef;
}
.CodeMirror .cm-atom,
.CodeMirror.cm-s-default .cm-atom,
.CodeMirror.cm-s-paper .cm-atom {
color: #d20f39;
}
.CodeMirror .cm-number,
.CodeMirror.cm-s-default .cm-number,
.CodeMirror.cm-s-paper .cm-number {
color: #fe640b;
}
.CodeMirror .cm-def,
.CodeMirror.cm-s-default .cm-def,
.CodeMirror.cm-s-paper .cm-def {
color: #4c4f69;
}
.CodeMirror .cm-variable-2,
.CodeMirror.cm-s-default .cm-variable-2,
.CodeMirror.cm-s-paper .cm-variable-2 {
color: #04a5e5;
}
.CodeMirror .cm-variable-3,
.CodeMirror.cm-s-default .cm-variable-3,
.CodeMirror.cm-s-paper .cm-variable-3 {
color: #179299;
}
.CodeMirror .cm-comment,
.CodeMirror.cm-s-default .cm-comment,
.CodeMirror.cm-s-paper .cm-comment {
color: #acb0be;
}
.CodeMirror .cm-string,
.CodeMirror.cm-s-default .cm-string,
.CodeMirror.cm-s-paper .cm-string {
color: #40a02b;
}
.CodeMirror .cm-string-2,
.CodeMirror.cm-s-default .cm-string-2,
.CodeMirror.cm-s-paper .cm-string-2 {
color: #40a02b;
}
.CodeMirror .cm-meta,
.CodeMirror.cm-s-default .cm-meta,
.CodeMirror.cm-s-paper .cm-meta {
color: #fe640b;
}
.CodeMirror .cm-qualifier,
.CodeMirror.cm-s-default .cm-qualifier,
.CodeMirror.cm-s-paper .cm-qualifier {
color: #fe640b;
}
.CodeMirror .cm-builtin,
.CodeMirror.cm-s-default .cm-builtin,
.CodeMirror.cm-s-paper .cm-builtin {
color: #fe640b;
}
.CodeMirror .cm-bracket,
.CodeMirror.cm-s-default .cm-bracket,
.CodeMirror.cm-s-paper .cm-bracket {
color: #4c4f69;
}
.CodeMirror .cm-tag,
.CodeMirror.cm-s-default .cm-tag,
.CodeMirror.cm-s-paper .cm-tag {
color: #df8e1d;
}
.CodeMirror .cm-attribute,
.CodeMirror.cm-s-default .cm-attribute,
.CodeMirror.cm-s-paper .cm-attribute {
color: #df8e1d;
}
.CodeMirror .cm-hr,
.CodeMirror.cm-s-default .cm-hr,
.CodeMirror.cm-s-paper .cm-hr {
color: #7c7f93;
}
.CodeMirror .cm-url,
.CodeMirror.cm-s-default .cm-url,
.CodeMirror.cm-s-paper .cm-url {
color: #1e66f5;
}
.CodeMirror .cm-link,
.CodeMirror.cm-s-default .cm-link,
.CodeMirror.cm-s-paper .cm-link {
color: #1e66f5;
}
.CodeMirror .cm-error,
.CodeMirror.cm-s-default .cm-error,
.CodeMirror.cm-s-paper .cm-error {
color: #d20f39;
}
.monaco-editor .selected-text {
background-color: #ccd0da !important;
}
.monaco-editor .margin-view-overlays .line-numbers {
color: #6c6f85 !important;
}
.monaco-editor .line-numbers.active-line-number {
color: #179299 !important;
}
.monaco-editor .view-overlays .current-line,
.monaco-editor .margin-view-overlays .current-line-margin {
background-color: rgb(232.7, 235.4, 240.8) !important;
}
.monaco-editor .mtk1 {
color: #4c4f69 !important;
}
.monaco-editor .mtk2 {
color: #ff69b4 !important;
}
.monaco-editor .mtk3 {
color: #fe640b !important;
}
.monaco-editor .mtk4 {
color: #179299 !important;
}
.monaco-editor .mtk5 {
color: #4c4f69 !important;
}
.monaco-editor .mtk6 {
color: #8839ef !important;
}
.monaco-editor .mtk7 {
color: #fe640b !important;
}
.monaco-editor .mtk8 {
color: #7c7f93 !important;
}
.monaco-editor .mtk9 {
color: #8839ef !important;
}
.monaco-editor .mtk10 {
color: #6c6f85 !important;
}
.monaco-editor .mtk11 {
color: #179299 !important;
}
.monaco-editor .mtk12 {
color: #179299 !important;
}
.monaco-editor .mtk13 {
color: #ff69b4 !important;
}
.monaco-editor .mtk14 {
color: #ff69b4 !important;
}
.monaco-editor .mtk15 {
color: #8839ef !important;
}
.monaco-editor .mtk16 {
color: #7c7f93 !important;
}
.monaco-editor .mtk17 {
color: #ff69b4 !important;
}
.monaco-editor .mtk18 {
color: #ff69b4 !important;
}
.monaco-editor .mtk19 {
color: #179299 !important;
}
.monaco-editor .mtk20 {
color: #ff69b4 !important;
}
.monaco-editor .mtk21 {
color: #40a02b !important;
}
.monaco-editor .mtk22 {
color: #ff69b4 !important;
}
.monaco-editor .mtk23 {
color: #1e66f5 !important;
}
.monaco-editor .mtk24 {
color: #fe640b !important;
}
.monaco-editor .mtk25 {
color: #ea76cb !important;
}
.monaco-editor .bracket-highlighting-0 {
color: rgb(156.4, 40.6, 76.2) !important;
}
.monaco-editor .bracket-highlighting-1 {
color: rgb(182.8, 91.6, 48.6) !important;
}
.monaco-editor .bracket-highlighting-2 {
color: rgb(164.2, 116.8, 59.4) !important;
}
.monaco-editor .bracket-highlighting-3 {
color: rgb(68.8, 127.6, 67.8) !important;
}
.monaco-editor .bracket-highlighting-4 {
color: rgb(48.4, 92.8, 189) !important;
}
.monaco-editor .bracket-highlighting-5 {
color: rgb(112, 65.8, 185.4) !important;
}

View file

@ -0,0 +1,852 @@
@import url('https://fonts.googleapis.com/css2?family=Sono&display=swap');
:root {
--fonts-override: "Sono";
color-scheme: light;
--is-dark-theme: false;
accent-color: #179299;
--color-primary: #179299;
--color-primary-contrast: #eff1f5;
--color-primary-hover: rgb(26.3323863636, 167.1534090909, 175.1676136364);
--color-primary-dark-1: rgb(24.9994318182, 158.6920454545, 166.3005681818);
--color-primary-dark-2: rgb(26.9988636364, 171.3840909091, 179.6011363636);
--color-primary-dark-3: rgb(28.9982954545, 184.0761363636, 192.9017045455);
--color-primary-dark-4: rgb(30.9977272727, 196.7681818182, 206.2022727273);
--color-primary-dark-5: rgb(32.9971590909, 209.4602272727, 219.5028409091);
--color-primary-dark-6: rgb(44.4511363636, 213.7159090909, 223.3488636364);
--color-primary-dark-7: rgb(57.7517045455, 216.3238636364, 225.3482954545);
--color-primary-light-1: rgb(21.0005681818, 133.3079545455, 139.6994318182);
--color-primary-light-2: rgb(19.0011363636, 120.6159090909, 126.3988636364);
--color-primary-light-3: rgb(17.0017045455, 107.9238636364, 113.0982954545);
--color-primary-light-4: rgb(15.0022727273, 95.2318181818, 99.7977272727);
--color-primary-light-5: rgb(13.0028409091, 82.5397727273, 86.4971590909);
--color-primary-light-6: rgb(11.0034090909, 69.8477272727, 73.1965909091);
--color-primary-light-7: rgb(9.0039772727, 57.1556818182, 59.8960227273);
--color-primary-alpha-10: rgba(23, 146, 153, 0.1);
--color-primary-alpha-20: rgba(23, 146, 153, 0.2);
--color-primary-alpha-30: rgba(23, 146, 153, 0.3);
--color-primary-alpha-40: rgba(23, 146, 153, 0.4);
--color-primary-alpha-50: rgba(23, 146, 153, 0.5);
--color-primary-alpha-60: rgba(23, 146, 153, 0.6);
--color-primary-alpha-70: rgba(23, 146, 153, 0.7);
--color-primary-alpha-80: rgba(23, 146, 153, 0.8);
--color-primary-alpha-90: rgba(23, 146, 153, 0.9);
--color-secondary: #bcc0cc;
--color-secondary-dark-1: rgb(195.1329545455, 199.8284090909, 211.5670454545);
--color-secondary-dark-2: rgb(186.2659090909, 191.6568181818, 205.1340909091);
--color-secondary-dark-3: rgb(177.3988636364, 183.4852272727, 198.7011363636);
--color-secondary-dark-4: rgb(168.5318181818, 175.3136363636, 192.2681818182);
--color-secondary-dark-5: rgb(159.6647727273, 167.1420454545, 185.8352272727);
--color-secondary-dark-6: rgb(150.7977272727, 158.9704545455, 179.4022727273);
--color-secondary-dark-7: rgb(141.9306818182, 150.7988636364, 172.9693181818);
--color-secondary-dark-8: rgb(133.0636363636, 142.6272727273, 166.5363636364);
--color-secondary-dark-9: rgb(124.1965909091, 134.4556818182, 160.1034090909);
--color-secondary-dark-10: rgb(115.3295454545, 126.2840909091, 153.6704545455);
--color-secondary-dark-11: rgb(106.6693181818, 118.2011363636, 147.0306818182);
--color-secondary-dark-12: rgb(100.2363636364, 111.0727272727, 138.1636363636);
--color-secondary-dark-13: rgb(93.8034090909, 103.9443181818, 129.2965909091);
--color-secondary-light-1: rgb(212.8670454545, 216.1715909091, 224.4329545455);
--color-secondary-light-2: rgb(221.7340909091, 224.3431818182, 230.8659090909);
--color-secondary-light-3: rgb(230.6011363636, 232.5147727273, 237.2988636364);
--color-secondary-light-4: rgb(239.4681818182, 240.6863636364, 243.7318181818);
--color-secondary-alpha-10: rgba(204, 208, 218, 0.1);
--color-secondary-alpha-20: rgba(204, 208, 218, 0.2);
--color-secondary-alpha-30: rgba(204, 208, 218, 0.3);
--color-secondary-alpha-40: rgba(204, 208, 218, 0.4);
--color-secondary-alpha-50: rgba(204, 208, 218, 0.5);
--color-secondary-alpha-60: rgba(204, 208, 218, 0.6);
--color-secondary-alpha-70: rgba(204, 208, 218, 0.7);
--color-secondary-alpha-80: rgba(204, 208, 218, 0.8);
--color-secondary-alpha-90: rgba(204, 208, 218, 0.9);
/* colors */
--color-red: #d20f39;
--color-orange: #fe640b;
--color-yellow: #df8e1d;
--color-olive: #40a02b;
--color-green: #40a02b;
--color-teal: #179299;
--color-blue: #1e66f5;
--color-violet: #7287fd;
--color-purple: #8839ef;
--color-pink: #ea76cb;
--color-brown: #dd7878;
--color-grey: #7c7f93;
--color-black: #e6e9ef;
/* light variants - produced via Sass scale-color(color, $lightness: -10%) */
--color-red-light: rgb(239.4, 36.6, 80.28);
--color-orange-light: rgb(254.2081632653, 132.2653061224, 61.7918367347);
--color-yellow-light: rgb(231.1785714286, 164.6428571429, 71.8214285714);
--color-olive-light: rgb(80.078817734, 200.197044335, 53.802955665);
--color-green-light: rgb(80.078817734, 200.197044335, 53.802955665);
--color-teal-light: rgb(29.6647727273, 188.3068181818, 197.3352272727);
--color-blue-light: rgb(78.829787234, 135.2042553191, 247.170212766);
--color-violet-light: rgb(164.2867132867, 177.7972027972, 253.7132867133);
--color-purple-light: rgb(164.3598130841, 104.1869158879, 242.8130841121);
--color-pink-light: rgb(240.7784810127, 162.2215189873, 219.7848101266);
--color-brown-light: rgb(231.2603550296, 160.7396449704, 160.7396449704);
--color-grey-light: rgb(151.9539748954, 154.3138075314, 170.0460251046);
--color-black-light: hsl(220, 21.9512195122%, 101.9607843137%);
/* dark 1 variants - produced via Sass scale-color(color, $lightness: -10%) */
--color-red-dark-1: rgb(239.4, 36.6, 80.28);
--color-orange-dark-1: rgb(254.2081632653, 132.2653061224, 61.7918367347);
--color-yellow-dark-1: rgb(231.1785714286, 164.6428571429, 71.8214285714);
--color-olive-dark-1: rgb(80.078817734, 200.197044335, 53.802955665);
--color-green-dark-1: rgb(80.078817734, 200.197044335, 53.802955665);
--color-teal-dark-1: rgb(29.6647727273, 188.3068181818, 197.3352272727);
--color-blue-dark-1: rgb(78.829787234, 135.2042553191, 247.170212766);
--color-violet-dark-1: rgb(164.2867132867, 177.7972027972, 253.7132867133);
--color-purple-dark-1: rgb(164.3598130841, 104.1869158879, 242.8130841121);
--color-pink-dark-1: rgb(240.7784810127, 162.2215189873, 219.7848101266);
--color-brown-dark-1: rgb(231.2603550296, 160.7396449704, 160.7396449704);
--color-black-dark-1: hsl(220, 21.9512195122%, 101.9607843137%);
/* dark 2 variants - produced via Sass scale-color(color, $lightness: -20%) */
--color-red-dark-2: rgb(242.8, 84.2, 118.36);
--color-orange-dark-2: rgb(254.4163265306, 164.5306122449, 112.5836734694);
--color-yellow-dark-2: rgb(237.0476190476, 186.9047619048, 116.9523809524);
--color-olive-dark-2: rgb(114.6305418719, 211.5763546798, 93.4236453202);
--color-green-dark-2: rgb(114.6305418719, 211.5763546798, 93.4236453202);
--color-teal-dark-2: rgb(53.3181818182, 215.4545454545, 224.6818181818);
--color-blue-dark-2: rgb(127.6595744681, 168.4085106383, 249.3404255319);
--color-violet-dark-2: rgb(214.5734265734, 220.5944055944, 254.4265734266);
--color-purple-dark-2: rgb(192.7196261682, 151.3738317757, 246.6261682243);
--color-pink-dark-2: rgb(247.5569620253, 206.4430379747, 236.5696202532);
--color-brown-dark-2: rgb(241.5207100592, 201.4792899408, 201.4792899408);
--color-black-dark-2: hsl(220, 21.9512195122%, 111.9607843137%);
/* other colors */
--color-gold: #dc8a78;
--color-white: #4c4f69;
--color-diff-removed-word-bg: rgba(210, 15, 57, 0.15);
--color-diff-added-word-bg: rgba(64, 160, 43, 0.15);
--color-diff-removed-row-bg: rgba(210, 15, 57, 0.07);
--color-diff-moved-row-bg: rgba(223, 142, 29, 0.07);
--color-diff-added-row-bg: rgba(64, 160, 43, 0.07);
--color-diff-removed-row-border: rgba(210, 15, 57, 0.07);
--color-diff-moved-row-border: rgba(223, 142, 29, 0.07);
--color-diff-added-row-border: rgba(64, 160, 43, 0.07);
--color-diff-inactive: #7c7f93;
--color-error-border: #d20f39;
--color-error-bg: #d20f39;
--color-error-bg-active: rgb(233.8, 16.7, 63.46);
--color-error-bg-hover: rgb(239.4, 36.6, 80.28);
--color-error-text: #eff1f5;
--color-success-border: rgb(80.078817734, 200.197044335, 53.802955665);
--color-success-bg: #40a02b;
--color-success-text: #eff1f5;
--color-warning-border: rgb(231.1785714286, 164.6428571429, 71.8214285714);
--color-warning-bg: #df8e1d;
--color-warning-text: #eff1f5;
--color-info-border: rgb(78.829787234, 135.2042553191, 247.170212766);
--color-info-bg: #eff1f5;
--color-info-text: #4c4f69;
--color-red-badge: rgb(239.4, 36.6, 80.28);
--color-red-badge-bg: #eff1f5;
--color-red-badge-hover-bg: rgb(233.8, 16.7, 63.46);
--color-green-badge: #40a02b;
--color-green-badge-bg: #40a02b;
--color-green-badge-hover-bg: rgb(72.039408867, 180.0985221675, 48.4014778325);
--color-yellow-badge: #df8e1d;
--color-yellow-badge-bg: #eff1f5;
--color-yellow-badge-hover-bg: rgb(228.244047619, 153.5119047619, 49.255952381);
--color-orange-badge: #fe640b;
--color-orange-badge-bg: #eff1f5;
--color-orange-badge-hover-bg: rgb(254.1040816327, 116.1326530612, 36.3959183673);
--color-git: #fe640b;
--color-highlight-bg: rgba(223, 142, 29, 0.15);
/* target-based colors */
--color-body: #eff1f5;
--color-box-header: #e6e9ef;
--color-box-body: #e6e9ef;
--color-box-body-highlight: #ccd0da;
--color-text-dark: #6c6f85;
--color-text: #4c4f69;
--color-text-light: #5c5f77;
--color-text-light-1: #5c5f77;
--color-text-light-2: #5c5f77;
--color-text-light-3: #5c5f77;
--color-footer: #e6e9ef;
--color-timeline: #ccd0da;
--color-input-text: #4c4f69;
--color-input-background: #ccd0da;
--color-input-toggle-background: #ccd0da;
--color-input-border: #bcc0cc;
--color-input-border-hover: #acb0be;
--color-nav-bg: #e6e9ef;
--color-nav-hover-bg: var(--color-hover);
--color-navbar: #e6e9ef;
--color-navbar-transparent: rgba(239, 241, 245, 0);
--color-light: rgba(172, 176, 190, 0.3);
--color-light-mimic-enabled: rgba(
0,
0,
0,
calc(40 / 255 * 222 / 255 / var(--opacity-disabled))
);
--color-light-border: #acb0be;
--color-hover: rgba(156, 160, 176, 0.2);
--color-active: rgba(76, 79, 105, 0.1);
--color-menu: #ccd0da;
--color-card: #ccd0da;
--color-markup-table-row: rgba(76, 79, 105, 0.02);
--color-markup-code-block: rgba(76, 79, 105, 0.05);
--color-markup-code-inline: #ccd0da;
--color-button: #ccd0da;
--color-code-bg: #eff1f5;
--color-code-sidebar-bg: #ccd0da;
--color-shadow: rgba(239, 241, 245, 0.1);
--color-tooltip-bg: #ccd0da;
--color-tooltip-text: var(--color-text);
--color-secondary-bg: #ccd0da;
--color-text-focus: #4c4f69;
--color-expand-button: #acb0be;
--color-placeholder-text: #6c6f85;
--color-editor-line-highlight: var(--color-primary-light-5);
--color-project-board-bg: var(--color-secondary-light-2);
/* gitea source code: */
/* should ideally be --color-text-dark, see go-gitea/gitea#15651 */
--color-caret: var(--color-text);
--color-reaction-bg: rgba(76, 79, 105, 0.07);
--color-reaction-active-bg: var(--color-primary-alpha-40);
--color-header-wrapper: #e6e9ef;
--color-header-wrapper-transparent: rgba(230, 233, 239, 0);
--color-label-text: #dce0e8;
--color-label-bg: #179299;
--color-label-hover-bg: rgb(26.9988636364, 171.3840909091, 179.6011363636);
--color-label-active-bg: rgb(24.9994318182, 158.6920454545, 166.3005681818);
--color-accent: var(--color-primary-light-1);
--color-small-accent: var(--color-primary-light-5);
--color-active-line: #bcc0cc;
}
.ui.ui.ui.button:not(.inverted, .basic).primary, .ui.ui.ui.button:not(.inverted, .basic).green, .ui.ui.ui.button:not(.inverted, .basic).red, .ui.ui.ui.button:not(.inverted, .basic).teal,
.ui.ui.ui.label:not(.inverted, .basic).primary,
.ui.ui.ui.label:not(.inverted, .basic).green,
.ui.ui.ui.label:not(.inverted, .basic).red,
.ui.ui.ui.label:not(.inverted, .basic).teal {
color: #eff1f5;
}
.ui.ui.ui.button:not(.inverted, .basic).primary:hover, .ui.ui.ui.button:not(.inverted, .basic).green:hover, .ui.ui.ui.button:not(.inverted, .basic).red:hover, .ui.ui.ui.button:not(.inverted, .basic).teal:hover,
.ui.ui.ui.label:not(.inverted, .basic).primary:hover,
.ui.ui.ui.label:not(.inverted, .basic).green:hover,
.ui.ui.ui.label:not(.inverted, .basic).red:hover,
.ui.ui.ui.label:not(.inverted, .basic).teal:hover {
color: #dce0e8;
}
.ui.basic.modal {
background-color: #dce0e8;
}
.ui.commit-header-row .svg.gitea-lock ~ a {
color: #eff1f5;
}
.ui.negative.message .header {
color: var(--color-error-text);
}
.ui.sha.isSigned.isVerified .shortsha {
color: #eff1f5;
}
.ui.sha.isSigned.isVerified svg.gitea-lock {
fill: #eff1f5;
}
.ui.basic.modal,
.ui.basic.modal > .header,
.ui.inverted.button {
color: #4c4f69 !important;
}
#repo-topics,
#topic_edit > .ui.selection.dropdown {
color: var(--color-label-text) !important;
}
blockquote.attention-tip {
border-left-color: var(--color-success-bg);
}
blockquote.attention-warning {
border-left-color: var(--color-warning-bg);
}
svg.attention-tip,
strong.attention-tip {
color: var(--color-success-bg);
}
svg.attention-warning,
strong.attention-warning {
color: var(--color-warning-bg);
}
.inline-code-block {
color: #dce0e8;
}
::selection {
background: rgba(23, 146, 153, 0.3) !important;
}
/* NameBuiltinPseudo */
.chroma .bp {
color: #fe640b;
}
/* Comment */
.chroma .c {
color: #9ca0b0;
}
/* CommentSingle */
.chroma .c1 {
color: #9ca0b0;
}
/* CommentHashbang */
.chroma .ch {
color: #9ca0b0;
}
/* CommentMultiline */
.chroma .cm {
color: #9ca0b0;
}
/* CommentPreproc */
.chroma .cp {
color: #1e66f5;
}
/* CommentPreprocFile */
.chroma .cpf {
color: #1e66f5;
}
/* CommentSpecial */
.chroma .cs {
color: #9ca0b0;
}
/* LiteralStringDelimiter */
.chroma .dl {
color: #1e66f5;
}
/* NameFunctionMagic */
/* Generic */
/* GenericDeleted */
.chroma .gd {
color: #4c4f69;
background-color: rgba(210, 15, 57, 0.15);
}
/* GenericEmph */
.chroma .ge {
font-style: italic;
}
/* GenericHeading */
.chroma .gh {
color: #04a5e5;
}
/* GenericInserted */
.chroma .gi {
color: #4c4f69;
background-color: rgba(64, 160, 43, 0.15);
}
/* GenericUnderline */
/* GenericOutput */
.chroma .go {
color: #fe640b;
}
/* GenericPrompt */
.chroma .gp {
color: #9ca0b0;
font-weight: bold;
}
/* GenericError */
.chroma .gr {
color: #e64553;
}
/* GenericStrong */
.chroma .gs {
font-weight: bold;
}
/* GenericTraceback */
.chroma .gt {
color: #e64553;
}
/* GenericSubheading */
.chroma .gu {
color: #04a5e5;
}
/* LiteralNumberIntegerLong */
.chroma .il {
color: #fe640b;
}
/* Keyword */
.chroma .k {
color: #8839ef;
}
/* KeywordConstant */
.chroma .kc {
color: #df8e1d;
}
/* KeywordDeclaration */
.chroma .kd {
color: #8839ef;
}
/* KeywordNamespace */
.chroma .kn {
color: #df8e1d;
}
/* KeywordPseudo */
.chroma .kp {
color: #8839ef;
font-weight: bold;
}
/* KeywordReserved */
.chroma .kr {
color: #8839ef;
}
/* KeywordType */
.chroma .kt {
color: #df8e1d;
}
/* Literal */
/* LiteralDate */
/* LiteralNumber */
.chroma .m {
color: #fe640b;
}
/* LiteralNumberBin */
.chroma .mb {
color: #fe640b;
}
/* LiteralNumberFloat */
.chroma .mf {
color: #fe640b;
}
/* LiteralNumberHex */
.chroma .mh {
color: #fe640b;
}
/* LiteralNumberInteger */
.chroma .mi {
color: #fe640b;
}
/* LiteralNumberOct */
.chroma .mo {
color: #fe640b;
}
/* Name */
.chroma .n {
color: #7287fd;
}
/* NameAttribute */
.chroma .na {
color: #df8e1d;
}
/* NameBuiltin */
.chroma .nb {
color: #fe640b;
}
/* NameClass */
.chroma .nc {
color: #df8e1d;
}
/* NameDecorator */
.chroma .nd {
color: #ea76cb;
}
/* NameException */
.chroma .ne {
color: #e64553;
}
/* NameFunction */
.chroma .nf {
color: #1e66f5;
}
/* NameEntity */
.chroma .ni {
color: #ea76cb;
}
/* NameLabel */
.chroma .nl {
color: #df8e1d;
}
/* NameNamespace */
.chroma .nn {
color: #df8e1d;
}
/* NameConstant */
.chroma .no {
color: #df8e1d;
}
/* NameTag */
.chroma .nt {
color: #8839ef;
}
/* NameVariable */
.chroma .nv {
color: #fe640b;
}
/* NameOther */
.chroma .nx {
color: #fe640b;
}
/* Operator */
.chroma .o {
color: #04a5e5;
}
/* OperatorWord */
.chroma .ow {
color: #04a5e5;
font-weight: bold;
}
/* Punctuation */
.chroma .p {
color: #7c7f93;
}
/* NameProperty */
/* LiteralString */
.chroma .s {
color: #40a02b;
}
/* LiteralStringSingle */
.chroma .s1 {
color: #40a02b;
}
/* LiteralStringDouble */
.chroma .s2 {
color: #40a02b;
}
/* LiteralStringAffix */
.chroma .sa {
color: #40a02b;
}
/* LiteralStringBacktick */
.chroma .sb {
color: #40a02b;
}
/* LiteralStringChar */
.chroma .sc {
color: #40a02b;
}
/* LiteralStringDoc */
.chroma .sd {
color: #40a02b;
}
/* LiteralStringEscape */
.chroma .se {
color: #1e66f5;
}
/* LiteralStringHeredoc */
.chroma .sh {
color: #40a02b;
}
/* LiteralStringInterpol */
.chroma .si {
color: #40a02b;
}
/* LiteralStringRegex */
.chroma .sr {
color: #1e66f5;
}
/* LiteralStringSymbol */
.chroma .ss {
color: #40a02b;
}
/* LiteralStringOther */
.chroma .sx {
color: #40a02b;
}
/* NameVariableClass */
.chroma .vc {
color: #df8e1d;
}
/* NameVariableGlobal */
.chroma .vg {
color: #fe640b;
}
/* NameVariableInstance */
.chroma .vi {
color: #df8e1d;
}
/* NameVariableMagic */
/* TextWhitespace */
.chroma .w {
color: #ccd0da;
}
.CodeMirror .cm-property,
.CodeMirror.cm-s-default .cm-property,
.CodeMirror.cm-s-paper .cm-property {
color: #4c4f69;
}
.CodeMirror .cm-header,
.CodeMirror.cm-s-default .cm-header,
.CodeMirror.cm-s-paper .cm-header {
color: #4c4f69;
}
.CodeMirror .cm-quote,
.CodeMirror.cm-s-default .cm-quote,
.CodeMirror.cm-s-paper .cm-quote {
color: #40a02b;
}
.CodeMirror .cm-keyword,
.CodeMirror.cm-s-default .cm-keyword,
.CodeMirror.cm-s-paper .cm-keyword {
color: #8839ef;
}
.CodeMirror .cm-atom,
.CodeMirror.cm-s-default .cm-atom,
.CodeMirror.cm-s-paper .cm-atom {
color: #d20f39;
}
.CodeMirror .cm-number,
.CodeMirror.cm-s-default .cm-number,
.CodeMirror.cm-s-paper .cm-number {
color: #fe640b;
}
.CodeMirror .cm-def,
.CodeMirror.cm-s-default .cm-def,
.CodeMirror.cm-s-paper .cm-def {
color: #4c4f69;
}
.CodeMirror .cm-variable-2,
.CodeMirror.cm-s-default .cm-variable-2,
.CodeMirror.cm-s-paper .cm-variable-2 {
color: #04a5e5;
}
.CodeMirror .cm-variable-3,
.CodeMirror.cm-s-default .cm-variable-3,
.CodeMirror.cm-s-paper .cm-variable-3 {
color: #179299;
}
.CodeMirror .cm-comment,
.CodeMirror.cm-s-default .cm-comment,
.CodeMirror.cm-s-paper .cm-comment {
color: #acb0be;
}
.CodeMirror .cm-string,
.CodeMirror.cm-s-default .cm-string,
.CodeMirror.cm-s-paper .cm-string {
color: #40a02b;
}
.CodeMirror .cm-string-2,
.CodeMirror.cm-s-default .cm-string-2,
.CodeMirror.cm-s-paper .cm-string-2 {
color: #40a02b;
}
.CodeMirror .cm-meta,
.CodeMirror.cm-s-default .cm-meta,
.CodeMirror.cm-s-paper .cm-meta {
color: #fe640b;
}
.CodeMirror .cm-qualifier,
.CodeMirror.cm-s-default .cm-qualifier,
.CodeMirror.cm-s-paper .cm-qualifier {
color: #fe640b;
}
.CodeMirror .cm-builtin,
.CodeMirror.cm-s-default .cm-builtin,
.CodeMirror.cm-s-paper .cm-builtin {
color: #fe640b;
}
.CodeMirror .cm-bracket,
.CodeMirror.cm-s-default .cm-bracket,
.CodeMirror.cm-s-paper .cm-bracket {
color: #4c4f69;
}
.CodeMirror .cm-tag,
.CodeMirror.cm-s-default .cm-tag,
.CodeMirror.cm-s-paper .cm-tag {
color: #df8e1d;
}
.CodeMirror .cm-attribute,
.CodeMirror.cm-s-default .cm-attribute,
.CodeMirror.cm-s-paper .cm-attribute {
color: #df8e1d;
}
.CodeMirror .cm-hr,
.CodeMirror.cm-s-default .cm-hr,
.CodeMirror.cm-s-paper .cm-hr {
color: #7c7f93;
}
.CodeMirror .cm-url,
.CodeMirror.cm-s-default .cm-url,
.CodeMirror.cm-s-paper .cm-url {
color: #1e66f5;
}
.CodeMirror .cm-link,
.CodeMirror.cm-s-default .cm-link,
.CodeMirror.cm-s-paper .cm-link {
color: #1e66f5;
}
.CodeMirror .cm-error,
.CodeMirror.cm-s-default .cm-error,
.CodeMirror.cm-s-paper .cm-error {
color: #d20f39;
}
.monaco-editor .selected-text {
background-color: #ccd0da !important;
}
.monaco-editor .margin-view-overlays .line-numbers {
color: #6c6f85 !important;
}
.monaco-editor .line-numbers.active-line-number {
color: #179299 !important;
}
.monaco-editor .view-overlays .current-line,
.monaco-editor .margin-view-overlays .current-line-margin {
background-color: rgb(232.7, 235.4, 240.8) !important;
}
.monaco-editor .mtk1 {
color: #4c4f69 !important;
}
.monaco-editor .mtk2 {
color: #ff69b4 !important;
}
.monaco-editor .mtk3 {
color: #fe640b !important;
}
.monaco-editor .mtk4 {
color: #179299 !important;
}
.monaco-editor .mtk5 {
color: #4c4f69 !important;
}
.monaco-editor .mtk6 {
color: #8839ef !important;
}
.monaco-editor .mtk7 {
color: #fe640b !important;
}
.monaco-editor .mtk8 {
color: #7c7f93 !important;
}
.monaco-editor .mtk9 {
color: #8839ef !important;
}
.monaco-editor .mtk10 {
color: #6c6f85 !important;
}
.monaco-editor .mtk11 {
color: #179299 !important;
}
.monaco-editor .mtk12 {
color: #179299 !important;
}
.monaco-editor .mtk13 {
color: #ff69b4 !important;
}
.monaco-editor .mtk14 {
color: #ff69b4 !important;
}
.monaco-editor .mtk15 {
color: #8839ef !important;
}
.monaco-editor .mtk16 {
color: #7c7f93 !important;
}
.monaco-editor .mtk17 {
color: #ff69b4 !important;
}
.monaco-editor .mtk18 {
color: #ff69b4 !important;
}
.monaco-editor .mtk19 {
color: #179299 !important;
}
.monaco-editor .mtk20 {
color: #ff69b4 !important;
}
.monaco-editor .mtk21 {
color: #40a02b !important;
}
.monaco-editor .mtk22 {
color: #ff69b4 !important;
}
.monaco-editor .mtk23 {
color: #1e66f5 !important;
}
.monaco-editor .mtk24 {
color: #fe640b !important;
}
.monaco-editor .mtk25 {
color: #ea76cb !important;
}
.monaco-editor .bracket-highlighting-0 {
color: rgb(156.4, 40.6, 76.2) !important;
}
.monaco-editor .bracket-highlighting-1 {
color: rgb(182.8, 91.6, 48.6) !important;
}
.monaco-editor .bracket-highlighting-2 {
color: rgb(164.2, 116.8, 59.4) !important;
}
.monaco-editor .bracket-highlighting-3 {
color: rgb(68.8, 127.6, 67.8) !important;
}
.monaco-editor .bracket-highlighting-4 {
color: rgb(48.4, 92.8, 189) !important;
}
.monaco-editor .bracket-highlighting-5 {
color: rgb(112, 65.8, 185.4) !important;
}