diff options
Diffstat (limited to 'css/theme/template/exposer.scss')
-rw-r--r-- | css/theme/template/exposer.scss | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/css/theme/template/exposer.scss b/css/theme/template/exposer.scss new file mode 100644 index 0000000..77a9ad1 --- /dev/null +++ b/css/theme/template/exposer.scss @@ -0,0 +1,27 @@ +// Exposes theme's variables for easy re-use in CSS for plugin authors + +:root { + --background-color: #{$backgroundColor}; + --main-font: #{$mainFont}; + --main-font-size: #{$mainFontSize}; + --main-color: #{$mainColor}; + --block-margin: #{$blockMargin}; + --heading-margin: #{$headingMargin}; + --heading-font: #{$headingFont}; + --heading-color: #{$headingColor}; + --heading-line-height: #{$headingLineHeight}; + --heading-letter-spacing: #{$headingLetterSpacing}; + --heading-text-transform: #{$headingTextTransform}; + --heading-text-shadow: #{$headingTextShadow}; + --heading-font-weight: #{$headingFontWeight}; + --heading1-text-shadow: #{$heading1TextShadow}; + --heading1-size: #{$heading1Size}; + --heading2-size: #{$heading2Size}; + --heading3-size: #{$heading3Size}; + --heading4-size: #{$heading4Size}; + --code-font: #{$codeFont}; + --link-color: #{$linkColor}; + --link-color-hover: #{$linkColorHover}; + --selection-background-color: #{$selectionBackgroundColor}; + --selection-color: #{$selectionColor}; +} |