Skip to content

Instantly share code, notes, and snippets.

View kaitlinmctigue's full-sized avatar

Katie McTigue kaitlinmctigue

View GitHub Profile
export default class App extends Component {
constructor(props) {
super(props);
this.state = {
dark: false
};
this.changeTheme = this.changeTheme.bind(this);
.base {
@include themed() {
color: t($text);
background: t($bg);
}
position: fixed;
width: 100%;
overflow-y: auto;
height: 100vh;
$themes: (
default: (
logo: url("../images/brand/logo_vertical.svg"),
bg: $bg--light,
card-bg: $bg--card--light,
text: $text--light,
text-secondary: $text--2--light,
link: $brand--blue--light,
hover: $hover--light,
border: $border--light
$themes: (
default: (
logo: url("../images/brand/logo_vertical.svg"),
bg: $bg--light,
card-bg: $bg--card--light,
text: $text--light,
text-secondary: $text--2--light,
link: $brand--blue--light,
hover: $hover--light,
border: $border--light