Skip to content

Instantly share code, notes, and snippets.

@dmitru
Last active February 23, 2017 20:12
Show Gist options
  • Select an option

  • Save dmitru/fc74ff3147211a49b74d2d0232a5a677 to your computer and use it in GitHub Desktop.

Select an option

Save dmitru/fc74ff3147211a49b74d2d0232a5a677 to your computer and use it in GitHub Desktop.
theming-with-scss
$themes: (
light: (
backgroundColor: #fff,
textColor: #408bbd,
buttonTextColor: #408bbd,
buttonTextTransform: none,
buttonTextHoverColor: #61b0e7,
buttonColor: #fff,
buttonBorder: 2px solid #fff,
),
dark: (
backgroundColor: #222,
textColor: #ddd,
buttonTextColor: #aaa,
buttonTextTransform: uppercase,
buttonTextHoverColor: #ddd,
buttonColor: #333,
buttonBorder: 1px solid #aaa,
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment