1.0.1 • Published 7 years ago

@elricb/sass-themer-color v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
7 years ago

sass-themer-color

Color scheme theory functions for sass

library

sass-themer-color/index.scss

demo

public/index.html

test

src/app/router/route/IndexComponent/index.scss

cd src/
npm install
npm run start

usage

theme mixins

namemixin
SetTheme@include setColorThemePallet($map)
SetLabels@include setColorThemeLabels($map)
SetThemeItem@include setColorThemePalletItem($mapkey, $background, $foreground)
SetLabelItem@include setColorThemeLabelItem($labelname, $mapkey)

theme functions

namefunction
GetForegroundColorcolor-theme-fore($labelname)
GetBackgroundColorcolor-theme-back($labelname)

scheme functions

$color - is any rgb/hsl/hex color code.
$fraction - is any decimal neg/pos that represents percent (-1 to 1). E.g. 0.5 = 50%.
namefunction
Analogouscolor-scheme-analogous($color, $fraction)
Monochromaticcolor-scheme-monochromatic($color, $fraction)
Shadescolor-scheme-shades($color, $fraction)
Triadcolor-scheme-triad($color, $fraction)
Complementarycolor-scheme-complementary($color, $fraction)
Compoundcolor-scheme-compound($color, $fraction)

additional functions

$color - the base color that will change based on the difference between
$color2 and $color3
$color2 - the current/default color to measure against $color3
$color3 - the changed foreground/background
namefunctiondescription
Adaptivecolor-scheme-adaptive($color, $color2, $color3)will alter $color lightness based on the difference between $color2 and $color3 to maintain contrast

example

@import "~sass-themer-color/index.scss";

@include setColorThemePallet((
    1: (
        back: #805b58,
        fore: #e8c046
    ),
    2: (
        back: #E84E46,
        fore: #000
    ),
    3: (
        back: #FF0601,
        fore: #000
    ),
    4: (
        back: #E8AAAB,
        fore: #000
    ),
    5: (
        back: rgb(174, 5, 1),
        fore: #fff
    )
));

@include setColorThemeLabels((
    highlight: 1,
    menu: 1,
    input: 2,
    header: 3,
    footer: 3,
    body: 4,
    overlay: 5,
));

header {
    color: color-theme-fore(header);
    background-color: color-theme-back(header);
}

footer {
    color: color-theme-fore(footer);
    background-color: color-theme-back(footer);
}

.overlay {
    color: color-theme-fore(overlay);
    background-color: color-theme-back(overlay);

    .title {
        color: color-theme-analogous(color-theme-fore(overlay), 0.5);
        background-color: color-theme-analogous(color-theme-back(overlay), 0.5);
    }
}
1.0.1

7 years ago

1.0.0

7 years ago