This is CSS for colour-coding three formatting decoration tags using the 'three-colour biros method'.
Workflowy 3-color system by mrykei
Details
Authormrykei
LicenseNo License
CategoryWorkflowy
Created
Updated
Size835 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Workflowy 3-color system
@namespace NONE
@author Moriya Keiichi
@description This is CSS for colour-coding three formatting decoration tags using the 'three-colour biros method'.
@version 2024.05.15.01
@license NONE
@preprocessor NONE
==/UserStyle== */
/* <b> 要素に対して背景を赤にし、太字にする */
.name b {
background-color: #b22222;
font-weight: bold;
}
/* <u> 要素に対して文字色を青にする */
.name u {
color: #0000ff;
background-color: #94ACB9;
}
/* <i> 要素に対して緑色の下線を引く */
.name i {
font-style: normal; /* イタリックを無効にする */
text-decoration: underline;
text-decoration-color: #BCF5A9;
text-decoration-thickness: 3px; /* 下線の太さを指定 */
}