gitea-theme-meta-info {
    --theme-display-name: "OneDark";
}

/* ======================================================
                General Styling Variables
   ====================================================== */

:root {
    --section-corner: 8px;

    /* Shadows for sections */
    --shadow-dark: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.04),
                    0 8px 20px rgba(0, 0, 0, 0.10);
}

/* Set weight for strong tags */
.strong {
    font-weight: 700;
}

/* Style sub-headers on pages */
.flex-item .flex-item-title {
    align-items: center !important;
    margin-right: 7px;
    font-weight: 700;
}

/* ======================================================
            OneDark Pro Color Palette Variables
   ====================================================== */
:root {
    --onedark-bg: #22252B;
    --onedark-bg-light: #272C34;
    --onedark-white: #abb2bf;
    --onedark-gray: #5c6370;
    --onedark-red: #e06c75;
    --onedark-green: #98c379;
    --onedark-yellow: #e5c07b;
    --onedark-cyan: #56b6c2;
    --onedark-blue: #61afef;
    --onedark-purple: #c678dd;
}

/* ======================================================
                    Hide Elements
   ====================================================== */

/* Hide the navigation bar */
#navbar {
    display: none !important;
}

/* Hide the footer */
.page-footer, footer.page-footer {
    display: none;
}

/* Hide every "fork" element */
.flex-item-trailing a[href$="/forks"] {
    display: none !important;
}

/* =======================================================================================
                    Component Styling
   ======================================================================================= */

/* ======================================================
                General Component Styling
   ====================================================== */

/* Rounded Labels - Override slight roundness for circle like edges */
.label-list .ui.label, /* Profile and organization page labels on repo cards */
.tw-gap-1 .label, /* Repository overview labels on description side panel */
.tw-items-center .label,
.org-visibility .label /* Round private label on organization pages */
{
    padding: 2px 10px !important;
    border-radius: 14px !important;
}


/*  =================== Link Highlighting =================== */

a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    border-radius: 5px !important;
    padding: 1px 4px !important;
}

a {
    display: inline-block;
    /* transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out; */
}


/* ======================================================
                    Tabs Menu
   ====================================================== */

/* Add spacing below the whole overflow menu */
overflow-menu .overflow-menu-items {
    margin-bottom: 10px; /* Add spacing below the menu */
}

/* Add spacing between individual overflow menu items */
.ui.tabular.menu .item, .ui.secondary.pointing.menu .item {
    margin: 10px 2px; /* Add vertical spacing between items */
    padding: 5px 15px !important;
}

/* Active Item Styling */
.ui.tabular.menu .active.item,
.ui.secondary.pointing.menu .active.item
 {
    background-color: rgba(255, 255, 255, 0.10);
    color: #0090FF !important;
    margin: 3px;
    border-radius: 5px !important;
}

/* Highlight tabs when hovered */
.ui.tabular.menu .active.item:hover,
.ui.secondary.pointing.menu a.item:hover {
    background-color: rgba(255, 255, 255, 0.10);
    border-radius: 5px !important;
}

/* Hide the current item indicator */
.ui.secondary.pointing.menu .active.item {
    border-color: transparent !important; /* Remove the bottom border */
}

/* =======================================================================================
                            Individual Page Styling
   ======================================================================================= */

/* ======================================================
                Login Page Customization
   ====================================================== */

/* Hide all traditional login containers */
.ui.container:has(form[action="/user/login"]) {
    display: none !important;
}

/* Optionally hide repeated headers or extra copies */
h4.ui.top.attached.header.center {
    display: none !important;
}

/* Stylize the passkey button */
.ui.container.fluid .tw-max-w-2xl.tw-m-auto.tw-flex.tw-flex-col.tw-items-center {
    padding: 10px 90px !important;
    border-radius: 8px;
    box-shadow: var(--shadow-light);

    .signin-passkey {
        color: var(--color-white) !important;
        font-weight: 500 !important;
    }
}

/* Center the passkey container if needed */
.ui.container:has(.signin-passkey) {
    display: block !important;
    margin-top: 30vh; /* moves it 30% down from top of viewport */
}

/* ======================================================
                Section & Button Styling
   ====================================================== */

/* Stylize  sections */
.ui.segment,
#repo-files-table {
    box-shadow: var(--shadow-light);
    border-radius: var(--section-corner);
}

#repo-files-table {
    margin-bottom: 30px;
}

/* Clone Repository Button Styling */
.repo-button-row-right > .ui.primary.button {
    background-color: #238636;

    /* Color for hover and active states */
    :active, :hover {
        background-color: #3ea453;
    }
}

/* Stylize repository cards on profile page */
.ui.twelve.wide.column .flex-item, .ui.eleven.wide.column .flex-item {
    background-color: #22252a !important;
    border: 1px solid color(srgb 0.2326 0.2677 0.2972) !important;
    margin-top: 14px !important;
    padding: 6px 18px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ui.twelve.wide.column .flex-item:hover, .ui.eleven.wide.column .flex-item:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-dark);
    background-color: #32373d !important;
}

.flex-item .flex-item-leading {
    display: flex;
    align-items: center;
    margin-right: 12px;
    margin-top: 5px;
}

/* Style profile picture in latest commit box */
.latest-commit > img.ui.avatar {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

/* =================== Profile Overview Page  =================== */

/* Search Bar Section */

/* .ui.form input:not([type]), .ui.form input[type=date], .ui.form input[type=datetime-local], .ui.form input[type=email], .ui.form input[type=number], .ui.form input[type=password], .ui.form input[type=search], .ui.form input[type=tel], .ui.form input[type=time], .ui.form input[type=text], .ui.form input[type=file], .ui.form input[type=url] */

.ui.form input {
    padding: 13px 17px !important;
    border-radius: 6px 0 0 6px !important;
    box-shadow: var(--shadow-light) !important;
}

/* Hide the top divider line */
.divider {
    display: none !important;
}

/* ======== Profile Overview Section ========= */

/* Profile Overview Section */
.profile-avatar-name {
    margin-top: 12px;
    padding: 0 !important;
}

/* make the name + gear sit on one flex line */
.profile-avatar-name .username {
    display: inline-flex;   /* or flex, if you want it full width */
    align-items: center;
    gap: 10px;               /* space between name and icon */
}

/* make sure the svg doesn't add extra descender space */
.profile-avatar-name .username .muted svg {
    display: block;
}

/* Remove border and background color from profile card */
.user.profile .ui.card {
    border: none;
    background-color: transparent;
}

.ui.card>.content {
    border: none;
}

/* Style Username*/
.username {
    font-weight: 900;
    font-size: 28px;
}

/* Center the entire location row (icon + text) */
.extra.content>ul>li:first-child {
    display: flex;
    justify-content: center; /* centers horizontally within the ul */
    align-items: center;      /* vertically aligns icon + text */
    gap: 6px;
    padding-bottom: 20px !important;
}

.extra.content>ul>li:first-child .tw-flex-1 {
    flex: none !important;
}

/* Hide the followers stats */
.tw-mt-2 {
    display: none;
}

/* =================== Organization Overview Page  =================== */

/* =========== Organization Header =========== */

/* Style organization name header */
.page-content.organization #org-info .ui.header {
    align-items: flex-start; /* Align items to the top */
    font-weight: 650; /* Make organization name bolder */
    margin-bottom: 5px; /* Add spacing below organization name */
}

/* Add spacing between organization name and private label */
.org-visibility .label {
    margin-left: 10px;
}

/* Add spacing below organization header */
.tw-flex {
    margin-bottom: 10px;
}

/* Style organization avatar */
.page-content.organization .org-avatar {
    margin-right: 20px; /* Add spacing to the right of the avatar */
    border-radius: 12px; /* Make avatar corners rounder */
}

/* ============ Right Column ============ */

/* Remove borders, colors and styling around right column subheaders */
.ui.five.wide.column  .ui.attached.header {
    background: none;
    padding: 0;
    margin: 0;
    border: none;
}


/* Remove borders, colors and styling around right column sections */
.ui.five.wide.column  .ui.segment {
    background: none;
    border: none;
    padding: 0;
}

/* Resize subheaders in right column */
.ui.five.wide.column .tw-flex-1 {
    font-size: 26px;
    margin-top: 10px;
    margin-bottom: 25px;
    font-weight: 700;
}

/* ============================================== Repository Overview Page  =================== */

/* ======================= Repository Code Page ====================*/

/* Stylize the active tab in the tab switcher */
.repository .repository-summary .item.active {
    border: 1px solid white;
    border-radius: 8px;
    transform: scale(1.15); /* enlarges the active tab */
    transform-origin: center; /* ensures scaling is centered */
    z-index: 2; /* brings it above adjacent items */
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* ========== Repository Files Table Styling ========== */

/* Style the header for the repository files table */
#repo-files-table .repo-file-line:first-child {
    border-radius: 8px 8px 0 0;
    padding: 12px 15px;
}

/* Style the individual file cells in the repository files table */
#repo-files-table .repo-file-cell.name {
    padding: 10px 15px;
}

/* ========== Version Tag Styling ========== */

/* Style the version tag text */
.gt-ellipsis {
    margin-right: 7px !important;
}

/* Latest release label styling */
.ui.ui.ui.green.label {
    background: transparent;
    padding: 2px 8px;
    border: 1px solid var(--color-green-badge);
    border-radius: 15px;
    color: var(--color-green-badge);
}

/* ============ Languages Used ============= */
.language-stats {
    height: 5px !important;
    margin-bottom: 13px;
}

/* C++ Bar */
div[aria-label="C\+\+"],
.color-icon[style*="#f34b7d"]
{
    background-color: #2e9bce !important;
}

/* C Bar */
div[aria-label="C"],
.color-icon[style*="#555555"]
{
    background-color: #114586 !important;
}

/* QMake Bar */
div[aria-label="QMake"],
.color-icon[style*="#cccccc"]
{
    background-color: #31c53d !important;
}

/* =================== Repository Cards on Profile Page =================== */

/* Create spacing between description and other elements */
.text.primary {
    color: #dbe2e9 !important;
    font-weight: 650;
    margin-right: 7px;
    margin-top: 2px;
}

/* Make repository icons larger on profile page */
.flex-item .flex-item-leading .ui.avatar.tw-align-middle {

    width: 40px !important;
    height: 40px !important;
    margin-top: 2px;
    border-radius: 8px;
}



/* Create spacing between description and other elements */
.flex-item .flex-item-body {
    margin: 2px 0;
}



/* Adding spacing between the list of labels on repo card and body/date */
.label-list {
    margin: 4px 0;
}

/* ======================================================
   Dark Theme Color Palette
   ====================================================== */

:root {
    --is-dark-theme: true;
    --color-primary: #4183c4;
    --color-primary-contrast: #ffffff;
    --color-primary-dark-1: #548fca;
    --color-primary-dark-2: #679cd0;
    --color-primary-dark-3: #7aa8d6;
    --color-primary-dark-4: #8db5dc;
    --color-primary-dark-5: #b3cde7;
    --color-primary-dark-6: #d9e6f3;
    --color-primary-dark-7: #f4f8fb;
    --color-primary-light-1: #3876b3;
    --color-primary-light-2: #31699f;
    --color-primary-light-3: #2b5c8b;
    --color-primary-light-4: #254f77;
    --color-primary-light-5: #193450;
    --color-primary-light-6: #0c1a28;
    --color-primary-light-7: #04080c;
    --color-primary-alpha-10: #4183c419;
    --color-primary-alpha-20: #4183c433;
    --color-primary-alpha-30: #4183c44b;
    --color-primary-alpha-40: #4183c466;
    --color-primary-alpha-50: #4183c480;
    --color-primary-alpha-60: #4183c499;
    --color-primary-alpha-70: #4183c4b3;
    --color-primary-alpha-80: #4183c4cc;
    --color-primary-alpha-90: #4183c4e1;
    --color-primary-hover: var(--color-primary-light-1);
    --color-primary-active: var(--color-primary-light-2);
    --color-secondary: #3b444c;
    --color-secondary-dark-1: #414b54;
    --color-secondary-dark-2: #49545f;
    --color-secondary-dark-3: #576471;
    --color-secondary-dark-4: #677685;
    --color-secondary-dark-5: #758594;
    --color-secondary-dark-6: #8392a0;
    --color-secondary-dark-7: #929eab;
    --color-secondary-dark-8: #a2acb7;
    --color-secondary-dark-9: #a9b3bd;
    --color-secondary-dark-10: #b7bfc7;
    --color-secondary-dark-11: #c5cbd2;
    --color-secondary-dark-12: #cfd4da;
    --color-secondary-dark-13: #d2d7dc;
    --color-secondary-light-1: #313940;
    --color-secondary-light-2: #292f35;
    --color-secondary-light-3: #1d2226;
    --color-secondary-light-4: #171b1e;
    --color-secondary-alpha-10: #3b444c19;
    --color-secondary-alpha-20: #3b444c33;
    --color-secondary-alpha-30: #3b444c4b;
    --color-secondary-alpha-40: #3b444c66;
    --color-secondary-alpha-50: #3b444c80;
    --color-secondary-alpha-60: #3b444c99;
    --color-secondary-alpha-70: #3b444cb3;
    --color-secondary-alpha-80: #3b444ccc;
    --color-secondary-alpha-90: #3b444ce1;
    --color-secondary-button: var(--color-secondary-dark-4);
    --color-secondary-hover: var(--color-secondary-dark-3);
    --color-secondary-active: var(--color-secondary-dark-2);
    --color-console-fg: #f7f8f9;
    --color-console-fg-subtle: #bdc4cc;
    --color-console-bg: #171b1e;
    --color-console-border: #2e353b;
    --color-console-hover-bg: #272d33;
    --color-console-active-bg: #2e353b;
    --color-console-menu-bg: #262b31;
    --color-console-menu-border: #414b55;
    --color-red: #cc4848;
    --color-orange: #cc580c;
    --color-yellow: #cc9903;
    --color-olive: #91a313;
    --color-green: #87ab63;
    --color-teal: #00918a;
    --color-blue: #3a8ac6;
    --color-violet: #906ae1;
    --color-purple: #b259d0;
    --color-pink: #d22e8b;
    --color-brown: #a47252;
    --color-black: #1d2328;
    --color-red-light: #d15a5a;
    --color-orange-light: #f6a066;
    --color-yellow-light: #eaaf03;
    --color-olive-light: #abc016;
    --color-green-light: #93b373;
    --color-teal-light: #00b6ad;
    --color-blue-light: #4e96cc;
    --color-violet-light: #9b79e4;
    --color-purple-light: #ba6ad5;
    --color-pink-light: #d74397;
    --color-brown-light: #b08061;
    --color-black-light: #424851;
    --color-red-dark-1: #c23636;
    --color-orange-dark-1: #f38236;
    --color-yellow-dark-1: #b88a03;
    --color-olive-dark-1: #839311;
    --color-green-dark-1: #7a9e55;
    --color-teal-dark-1: #00837c;
    --color-blue-dark-1: #347cb3;
    --color-violet-dark-1: #7b4edb;
    --color-purple-dark-1: #a742c9;
    --color-pink-dark-1: #be297d;
    --color-brown-dark-1: #94674a;
    --color-black-dark-1: #292e38;
    --color-red-dark-2: #ad3030;
    --color-orange-dark-2: #f16e17;
    --color-yellow-dark-2: #a37a02;
    --color-olive-dark-2: #74820f;
    --color-green-dark-2: #6c8c4c;
    --color-teal-dark-2: #00746e;
    --color-blue-dark-2: #2e6e9f;
    --color-violet-dark-2: #6733d6;
    --color-purple-dark-2: #9834b9;
    --color-pink-dark-2: #a9246f;
    --color-brown-dark-2: #835b42;
    --color-black-dark-2: #272930;
    --color-ansi-black: #1e2327;
    --color-ansi-red: #cc4848;
    --color-ansi-green: #87ab63;
    --color-ansi-yellow: #cc9903;
    --color-ansi-blue: #3a8ac6;
    --color-ansi-magenta: #d22e8b;
    --color-ansi-cyan: #00918a;
    --color-ansi-white: var(--color-console-fg-subtle);
    --color-ansi-bright-black: #424851;
    --color-ansi-bright-red: #d15a5a;
    --color-ansi-bright-green: #93b373;
    --color-ansi-bright-yellow: #eaaf03;
    --color-ansi-bright-blue: #4e96cc;
    --color-ansi-bright-magenta: #d74397;
    --color-ansi-bright-cyan: #00b6ad;
    --color-ansi-bright-white: var(--color-console-fg);
    --color-grey: #384149;
    --color-grey-light: #818f9e;
    --color-gold: #b1983b;
    --color-white: #ffffff;
    --color-diff-added-linenum-bg: #274227;
    --color-diff-added-row-bg: #203224;
    --color-diff-added-row-border: #314a37;
    --color-diff-added-word-bg: #3c653c;
    --color-diff-moved-row-bg: #818044;
    --color-diff-moved-row-border: #bcca6f;
    --color-diff-removed-linenum-bg: #482121;
    --color-diff-removed-row-bg: #301e1e;
    --color-diff-removed-row-border: #634343;
    --color-diff-removed-word-bg: #6f3333;
    --color-diff-inactive: #22282d;
    --color-error-border: #a04141;
    --color-error-bg: #522;
    --color-error-bg-active: #744;
    --color-error-bg-hover: #633;
    --color-error-text: #f9cbcb;
    --color-success-border: #458a57;
    --color-success-bg: #284034;
    --color-success-text: #6cc664;
    --color-warning-border: #bb9d00;
    --color-warning-bg: #3a3a30;
    --color-warning-text: #fbbd08;
    --color-info-border: #306090;
    --color-info-bg: #26354c;
    --color-info-text: #38a8e8;
    --color-red-badge: #db2828;
    --color-red-badge-bg: #db28281a;
    --color-red-badge-hover-bg: #db28284d;
    --color-green-badge: #21ba45;
    --color-green-badge-bg: #21ba451a;
    --color-green-badge-hover-bg: #21ba454d;
    --color-yellow-badge: #fbbd08;
    --color-yellow-badge-bg: #fbbd081a;
    --color-yellow-badge-hover-bg: #fbbd084d;
    --color-orange-badge: #f2711c;
    --color-orange-badge-bg: #f2711c1a;
    --color-orange-badge-hover-bg: #f2711c4d;
    --color-git: #f05133;
    --color-logo: #609926;
    --color-body: #1b1f23;
    --color-box-header: #1a1d1f;
    --color-box-body: #14171a;
    --color-box-body-highlight: #1e2226;
    --color-text-dark: #f7f8f9;
    --color-text: #d0d5da;
    --color-text-light: #bcc3cb;
    --color-text-light-1: #a5afb9;
    --color-text-light-2: #8f9ba8;
    --color-text-light-3: #788797;
    --color-footer: var(--color-nav-bg);
    --color-timeline: #343c44;
    --color-input-text: var(--color-text-dark);
    --color-input-background: #171a1e;
    --color-input-toggle-background: #2e353c;
    --color-input-border: var(--color-secondary);
    --color-input-border-hover: var(--color-secondary-dark-1);
    --color-light: #00001728;
    --color-light-mimic-enabled: rgba(0, 0, 0, calc(40 / 255 * 222 / 255 / var(--opacity-disabled)));
    --color-light-border: #e8f3ff28;
    --color-hover: #e8f3ff19;
    --color-hover-opaque: #21252a;
    --color-active: #e8f3ff24;
    --color-menu: #171a1e;
    --color-card: #171a1e;
    --color-markup-table-row: #e8f3ff0f;
    --color-markup-code-block: #e8f3ff12;
    --color-markup-code-inline: #e8f3ff28;
    --color-button: #171a1e;
    --color-code-bg: #14171a;
    --color-shadow: #00001758;
    --color-shadow-opaque: #000017;
    --color-secondary-bg: #2a3137;
    --color-expand-button: #2f363d;
    --color-placeholder-text: var(--color-text-light-3);
    --color-editor-line-highlight: var(--color-primary-light-5);
    --color-project-column-bg: var(--color-secondary-light-2);
    --color-caret: var(--color-text);
    --color-reaction-bg: #e8f3ff12;
    --color-reaction-hover-bg: var(--color-primary-light-4);
    --color-reaction-active-bg: var(--color-primary-light-5);
    --color-tooltip-text: #f9fafb;
    --color-tooltip-bg: #000b17f0;
    --color-nav-bg: #16191d;
    --color-nav-hover-bg: var(--color-secondary-light-1);
    --color-nav-text: var(--color-text);
    --color-secondary-nav-bg: #181c20;
    --color-label-text: var(--color-text);
    --color-label-bg: #7282924b;
    --color-label-hover-bg: #728292a0;
    --color-label-active-bg: #728292ff;
    --color-accent: var(--color-primary-light-1);
    --color-small-accent: var(--color-primary-light-5);
    --color-highlight-fg: #87651e;
    --color-highlight-bg: #352c1c;
    --color-overlay-backdrop: #080808c0;
    accent-color: var(--color-accent);
    color-scheme: dark;


}

/* ======================================================
   Chroma (repository & diff viewer) — OneDark Pro Mapping
   ====================================================== */

.chroma {
    background-color: var(--onedark-bg) !important;
    color: var(--onedark-white) !important;
}

/* Comments */
.chroma .c, .ch, .cm, .c1, .cs {
    color: #5c6370;
    font-style: italic;
}

.chroma .k, .kr, .kd, .kp, .kn, .kc, /* Keywords (if, return, new, delete, etc.) */
.chroma .kt, .cp, /* Preprocessor directives (#include, #define) */
.chroma .o, .ow /* Operators */ {
    color: var(--onedark-purple);
}


.chroma .n, /* Class, struct, and type names */
.chroma .m, .mi, .mf, .mh, .mo, .il /* Numbers */ {
    color: var(--onedark-yellow);
}

.chroma .nf /* Function and method names */
{
    color: var(--onedark-blue); /* bright blue */
}

.chroma .na, .nv /* Object & variable identifiers */
{
    color: var(--onedark-red); /* soft red */
}

/* Built-ins, namespaces, constants */
.chroma .nb, .no, .nn
{
    color: #56b6c2; /* cyan */
}

/* Strings & chars */
.chroma .cpf {
    color: #98c379; /* green */
}


/* ======================================================
             Code Difference Highlighting
   ====================================================== */

/* Errors and diff highlights */
.chroma .err { color: #e06c75; background-color: #3a1f1f; }
.chroma .gd  { color: #abb2bf; background-color: #6f3333; }
.chroma .gi  { color: #abb2bf; background-color: #3c653c; }

/* Highlighted line */
.chroma .hl  { background-color: #3a3f47; }

/* Inline & fenced code */
code, pre, .markup-code, .markup-code-block {
    color: var(--onedark-white) !important;
    font-size: 11px;
    padding: 4px 6px;
    font-family: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
    line-height: 1.1;
}

/* CodeMirror (Markdown, wiki, editor) */
.CodeMirror {
    background: var(--onedark-bg);
    color: var(--onedark-white);
    font-family: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
    font-size: 13px;
    line-height: 1.55;
}
.CodeMirror-cursor {
    border-left: 2px solid var(--onedark-yellow);
}
.CodeMirror-gutters {
    background: var(--onedark-bg-light);
    color: var(--onedark-gray);
    border-right: 1px solid #3b4048;
}

/* Token colors to match VS Code OneDark Pro */
.cm-s-easymde .cm-comment   { color: var(--onedark-gray); }
.cm-s-easymde .cm-keyword   { color: var(--onedark-purple); }
.cm-s-easymde .cm-def,
.cm-s-easymde .cm-variable  { color: var(--onedark-blue); }
.cm-s-easymde .cm-string,
.cm-s-easymde .cm-link      { color: var(--onedark-green); }
.cm-s-easymde .cm-number    { color: var(--onedark-orange); }
.cm-s-easymde .cm-attribute { color: var(--onedark-cyan); }
.cm-s-easymde .cm-builtin   { color: var(--onedark-cyan); }
.cm-s-easymde .cm-tag       { color: var(--onedark-red); }

/* Line numbers */
.CodeMirror-linenumber {
    color: var(--onedark-gray) !important;
}

/* 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);
}

/* ======================================================
                          FONTS
   ====================================================== */

@font-face {
    font-family: 'JetBrains Mono';
    src: url('/assets/fonts/JetBrains Mono/JetBrainsMono-Regular.woff2') format('woff2');
}
