Change the color and font of the subscribe button (and every button) on YouTube
yt custom subscribe button by zettaexa
Details
Authorzettaexa
LicenseNONE
Categoryyoutube.com
Created
Updated
Size877 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
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]]*/;
}
}