Features
CSS Root Variables
terminal
:root {
/** Font default */
--font-family-default: 'Open Sans', sans-serif;
--font-family-title: 'Noto Serif', serif;
--font-size-default: 14px;
--font-size-title: 18px;
--font-color-default: #000000;
--font-color-title: #6c757d;
/** Use for input, button, and any other element */
--primary: #007bff;
--secondary: #6c757d;
--success: #28a745;
--info: #17a2b8;
--warning: #ffc107;
--danger: #dc3545;
--light: #f8f9fa;
--dark: #343a40;
}
The variables will be use on the future update of plugin so utilize it.
Last updated on