Skip to content

Fix Trello Label Colours by domzor

Mirrored from https://raw.githubusercontent.com/domzor/userstyles/master/styles/fix-trello-label-colours.user.css

Screenshot of Fix Trello Label Colours

Details

Authordomzor

LicenseMIT

Categorytrello.com

Created

Updated

Size1.3 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

The new pastel Trello labels are AWFUL so I made them look like they used to.

Notes

1.0.11 - Fixed label font colour a g a i n

Source code

/* ==UserStyle==
@name           Fix Trello Label Colours
@namespace      https://github.com/domzor
@version        1.0.12
@description    The new pastel Trello labels are AWFUL so I made them look like they used to.
@author         Dom van Blerk (https://github.com/domzor)
@homepageURL    https://github.com/domzor/userstyles
@license        MIT
==/UserStyle== */

@-moz-document domain("trello.com") {
    [data-color] {
        --label-text-color: #ffffff !important;
        font-weight: bold !important;
        padding: 0 8px !important;
    }

    [data-color]::before {
        display: none;
    }

    [data-color="green"] {
        background-color: #64bc58;
    }

    [data-color="yellow"] {
        background-color: #f3d504;
    }

    [data-color="orange"] {
        background-color: #fe9d32;
    }

    [data-color="red"] {
        background-color: #ea594a;
    }

    [data-color="purple"] {
        background-color: #c477e1;
    }

    [data-color="blue"] {
        background-color: #077bbc;
    }

    [data-color="sky"] {
        background-color: #16c3de;
    }

    [data-color="lime"] {
        background-color: #57e79c;
    }

    [data-color="pink"] {
        background-color: #fe7ac9;
    }

    [data-color="black"] {
        background-color: #344662;
    }
}

Reviews

No reviews yet.