Sha256: 11b0b55cde19f0cc25ab5ad60ff1d5fb906f3cede3ef79a5ad2d4538e045bc39

Contents?: true

Size: 1.06 KB

Versions: 2

Compression:

Stored size: 1.06 KB

Contents

// In theory the lightness and saturation values of corresponding colors should not change.
// In reality, these values should be adjusted to create a more pleasant color combination.
// There is not any mathematical formula for this, but you can use the lighten, darken,
// saturate and desaturate functions to adjust your main colors.
!base_color ||= red
!complementary_color = complement(!base_color)

!base_dark_color     = darken(!base_color, 25)
!base_darker_color   = darken(!base_color, 50)
!base_darkest_color  = darken(!base_color, 75)
!base_light_color    = lighten(!base_color, 25)
!base_lighter_color  = lighten(!base_color, 50)
!base_lightest_color = lighten(!base_color, 75)

!dark_complementary_color     = darken(!complementary_color, 25)
!darker_complementary_color   = darken(!complementary_color, 50)
!darkest_complementary_color  = darken(!complementary_color, 75)
!light_complementary_color    = lighten(!complementary_color, 25)
!lighter_complementary_color  = lighten(!complementary_color, 50)
!lightest_complementary_color = lighten(!complementary_color, 75)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
chriseppstein-compass-colors-0.1.4 templates/complementary/_theme.sass
chriseppstein-compass-colors-0.1.5 templates/complementary/_theme.sass