Skip to content

Instantly share code, notes, and snippets.

@JuanRangel
Created May 16, 2015 03:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JuanRangel/a253d37ad6a7cadcb364 to your computer and use it in GitHub Desktop.
Save JuanRangel/a253d37ad6a7cadcb364 to your computer and use it in GitHub Desktop.
Color Schemes
$theme-blue: #779ECB;
$theme-purple: #CA98C9;
$theme-red: #FF6861;
$theme-green: #89E894;
$theme-dark: #78797B;
.theme-blue {
.site-header,
.home-middle,
.footer-widgets {
background-color: $theme-blue;
}
.site-footer,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button,
.edd-submit {
background-color: darken( $theme-blue, 5% );
&:hover {
background-color: darken( $theme-blue, 10% );
}
}
.entry a {
color: $theme-blue;
}
}
.theme-purple {
.site-header,
.home-middle,
.footer-widgets {
background-color: $theme-purple;
}
.site-footer,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button,
.edd-submit {
background-color: darken( $theme-purple, 5% );
&:hover {
background-color: darken( $theme-purple, 10% );
}
}
.entry a {
color: $theme-purple;
}
}
.theme-red {
.site-header,
.home-middle,
.footer-widgets {
background-color: $theme-red;
}
.site-footer,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button,
.edd-submit {
background-color: darken( $theme-red, 5% );
&:hover {
background-color: darken( $theme-red, 10% );
}
}
.entry a {
color: $theme-red;
}
}
.theme-green {
.site-header,
.home-middle,
.footer-widgets {
background-color: $theme-green;
}
.site-footer,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button,
.edd-submit {
background-color: darken( $theme-green, 5% );
&:hover {
background-color: darken( $theme-green, 10% );
}
}
.entry a {
color: $theme-green;
}
}
.theme-dark {
.site-header,
.home-middle,
.footer-widgets {
background-color: $theme-dark;
}
.site-footer,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button,
.edd-submit {
background-color: darken( $theme-dark, 5% );
&:hover {
background-color: darken( $theme-dark, 10% );
}
}
.entry a {
color: $theme-dark;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment