favycon/components/typography/index.module.scss
Rui Saraiva 3ad6bcd128
feat(styles): update hovers and backgrounds (#60)
* improvement(styles): update hovers and backgrounds

* feat(about-us): add project link and contact email

* chore(colors): update colors

* chore(storybook): add Chromatic

* chore: update repo info

* chore(deps): upgrade dependencies

* refactor: update colors and repo info

* chore: remove chromatic

* refactor(deps): upgrade react-dropzone to v11

* feat: update app icon

* chore: update background image

* chore: dark mode favicon
2020-05-11 18:41:59 +01:00

116 lines
1.5 KiB
SCSS

@import '../../styles/variables.scss';
.root {
font-family: Manrope, Arial, Helvetica Neue, Helvetica, sans-serif;
}
.h1 {
font-size: $font-size-h1;
line-height: $line-height-h1;
}
.smallBody {
font-size: $font-size-small-body;
line-height: $line-height-small-body;
}
.regularBody {
font-size: $font-size-regular-body;
line-height: $line-height-regular-body;
}
.mediumBody {
font-size: $font-size-medium-body;
line-height: $line-height-medium-body;
}
.largeBody {
font-size: $font-size-large-body;
line-height: $line-height-large-body;
}
.footer {
font-size: $font-size-footer;
line-height: $line-height-footer;
a {
color: inherit;
&:focus,
&:active,
&:hover {
color: inherit;
}
}
}
.superscript {
font-size: $font-size-superscript;
line-height: $line-height-superscript;
}
.title {
font-size: $font-size-title;
line-height: $line-height-title;
}
.largeTitle {
font-size: $font-size-large-title;
line-height: $line-height-large-title;
}
.regular {
font-weight: 400;
}
.medium {
font-weight: 500;
}
.semiBold {
font-weight: 600;
}
.bold {
font-weight: 700;
}
.black {
color: $black;
transition: color 0.2s ease;
}
:global(.dark-mode) .black {
color: $off-white;
}
.gray {
color: $grey;
}
:global(.dark-mode) .gray {
color: $grey-dark;
}
.white {
color: $white;
transition: color 0.2s ease;
}
:global(.dark-mode) .white {
color: $black;
}
.green {
color: $green;
}
.muted {
color: $grey;
transition: color 0.2s ease;
}
:global(.dark-mode) .muted {
color: $grey;
}