10 lines
191 B
SCSS
10 lines
191 B
SCSS
@import "colors";
|
|
|
|
:root {
|
|
--font-family: 'Roboto', sans-serif;;
|
|
--dark-gray-color: #{$dark-gray};
|
|
--gray-color: #{$gray};
|
|
--text-color: #{$text-color};
|
|
--bg-color: #{$bg-color};
|
|
}
|