Skip to content

YT custom subscribe by zettaexa

Screenshot of YT custom subscribe

Details

Authorzettaexa

LicenseNONE

Categoryyoutube.com

Created

Updated

Code size877 B

Code checksum2b8b6a14

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Quick utility to change the color and font of the subscribe button (and every button) on YouTube

Notes

There is no way to change the font of the subscribe button when you're subscribed to a channel, so I put in a font changer for every button on YouTube (such as the like/dislike button) if you want to do that along some many others

Source code

/* ==UserStyle==
@name         Custom YouTube Subscribe
@namespace    User Styles World
@author       zetta
@description  Change the color of the subscribe button in YouTube
@version      1
@license      NONE
@preprocessor uso
@advanced color subcolour "Subscribe Background Colour" #c91a5a
@advanced color textcolour "Subscribe Text Colour" #FFF7fA
@advanced text font "Subscribe Font" Roboto
@advanced text buttonfont "Every Button on YouTube Font" Roboto
==/UserStyle== */
@-moz-document domain("www.youtube.com") {
    
    .yt-spec-button-shape-next--mono.yt-spec-button-shape-next--filled {
        background-color: /*[[subcolour]]*/ !important;
        color: /*[[textcolour]]*/ !important;
        font-family: /*[[font]]*/;
    }
    
    .yt-spec-button-shape-next__button-text-content {
        font-family: /*[[buttonfont]]*/;
    }
    
}

Reviews

No reviews yet.