Skip to content

Commit

Permalink
make the variable names for the base_color follow the same scheme as …
Browse files Browse the repository at this point in the history
…in templates/basic
  • Loading branch information
kisoku committed Aug 3, 2009
1 parent fa6ef89 commit be7ff8c
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
12 changes: 6 additions & 6 deletions templates/analogous/_theme.sass
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
!support_color = adjust_hue(!base_color, 30)
!accent_color = adjust_hue(!base_color, -30)

!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_base_color = darken(!base_color, 25)
!darker_base_color = darken(!base_color, 50)
!darkest_base_color = darken(!base_color, 75)
!light_base_color = lighten(!base_color, 25)
!lighter_base_color = lighten(!base_color, 50)
!lightest_base_color = lighten(!base_color, 75)

!dark_support_color = darken(!support_color, 25)
!darker_support_color = darken(!support_color, 50)
Expand Down
12 changes: 6 additions & 6 deletions templates/complementary/_theme.sass
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
!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_base_color = darken(!base_color, 25)
!darker_base_color = darken(!base_color, 50)
!darkest_base_color = darken(!base_color, 75)
!light_base_color = lighten(!base_color, 25)
!lighter_base_color = lighten(!base_color, 50)
!lightest_base_color = lighten(!base_color, 75)

!dark_complementary_color = darken(!complementary_color, 25)
!darker_complementary_color = darken(!complementary_color, 50)
Expand Down
12 changes: 6 additions & 6 deletions templates/split_complement/_theme.sass
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
!complement_support_color = adjust_hue(!base_color, 180 + 30)
!complement_accent_color = adjust_hue(!base_color, 180 - 30)

!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_base_color = darken(!base_color, 25)
!darker_base_color = darken(!base_color, 50)
!darkest_base_color = darken(!base_color, 75)
!light_base_color = lighten(!base_color, 25)
!lighter_base_color = lighten(!base_color, 50)
!lightest_base_color = lighten(!base_color, 75)

!dark_complement_support_color = darken(!complement_support_color, 25)
!darker_complement_support_color = darken(!complement_support_color, 50)
Expand Down
12 changes: 6 additions & 6 deletions templates/triadic/_theme.sass
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
!support_color = adjust_hue(!base_color, 120)
!accent_color = adjust_hue(!base_color, -120)

!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_base_color = darken(!base_color, 25)
!darker_base_color = darken(!base_color, 50)
!darkest_base_color = darken(!base_color, 75)
!light_base_color = lighten(!base_color, 25)
!lighter_base_color = lighten(!base_color, 50)
!lightest_base_color = lighten(!base_color, 75)

!dark_support_color = darken(!support_color, 25)
!darker_support_color = darken(!support_color, 50)
Expand Down

0 comments on commit be7ff8c

Please sign in to comment.