Skip to content

Transparent Text Selection [Color Adjustment] by eggciting

Details

Authoreggciting

LicenseNo License

Categorygoogle, firefox

Created

Updated

Code size1.2 kB

Code checksum77d60ae9

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

tw

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           Transparent Text Selection
@namespace      USO Archive
@author         Tadgh Henry
@description    `Makes text selection transparent. Highlighting the characters rather than the background.`
@version        20210409.2.4
@license        NO-REDISTRIBUTION
@preprocessor   uso
==/UserStyle== */
/*
______________________________________________________________
|                  |                                          |
|   Date Created:  |  April 8, 2021                           |
|__________________|__________________________________________|

*/
/* Chrome */
@-moz-document domain(discord.com), domain("google.com"), domain("roblox.com"), domain("github.com"), domain("rolimons.com") {
    *::selection {
        /* Background color */
        background-color: rgba(0, 0, 0, 0) !important;
        /* Chrome Blue */
        color: #6602f2;
        /* Pastel Dark Blue */
        text-shadow: 1px 1px 2px #2f527b;
    }
    /* Mozilla */
    *::-moz-selection {
        /* Background color */
        background-color: rgba(0, 0, 0, 0) !important;
        /* Chrome Blue */
        color: #6602f2;
        /* Pastel Dark Blue */
        text-shadow: 1px 1px 2px #2f527b;
    }
}

Reviews

No reviews yet.