Skip to content

hex by SillyMarson

Details

AuthorSillyMarson

LicenseNo License

Category@-moz-document url-prefix("https://hexagon.pw/category/") { /* Category-specific styles */ body { background-color: crimson !important; } }

Created

Updated

Size1.2 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

hex

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         Hexagon Red Theme
@version      1.0
@namespace    userstyles.world/user/hexagon_red
@description  Applies a red background, white text, and black buttons across Hexagon.pw
@author       User
@license      No License
==/UserStyle== */

@-moz-document url-prefix("https://hexagon.pw/") {
    /* Set background to red */
    body {
        background-color: red !important;
        color: white !important;
    }
    
    /* Ensure all text is white */
    * {
        color: white !important;
    }
    
    /* Style buttons to be black with white text */
    button, .btn {
        background-color: black !important;
        color: white !important;
        border: 1px solid white !important;
    }
    
    /* Override specific elements that might have different background colors */
    .navbar, .footer, .header, .card, .panel, .modal-content {
        background-color: red !important;
        color: white !important;
    }
    
    /* Ensure links are visible */
    a {
        color: white !important;
    }
    
    a:hover {
        color: lightgray !important;
    }
}

Reviews

No reviews yet.