Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name SPM Custom CSS Properties
// @namespace http://tampermonkey.net/
// @version 0.35
// @description SPM UI theme creation using CSS properties
// @author https://github.com/daithimorton
// @match https://*/*
// @match http://*/*
// @grant none
// @downloadUrl https://gist.github.com/daithimorton/467336d64f1a130ef622499634dd098c/raw/spmcssvar.user.js
module Component
def operation
raise "Component error"
end
end
module Decorator
include Component
def initialize(component)
@component = component
module Component
def operation
raise "Component error"
end
end
module Decorator
include Component
def initialize(component)