add first scss style, colors module

This commit is contained in:
andr-ew 2023-07-03 14:36:04 -05:00
parent dac820b480
commit b7e5928a25
3 changed files with 13 additions and 1 deletions

View File

@ -1,7 +1,9 @@
import styles from './styles.module.scss';
export default function RootLayout({ children }) {
return (
<html lang='en'>
<body>{children}</body>
<body className={styles.body}>{children}</body>
</html>
);
}

5
app/styles.module.scss Normal file
View File

@ -0,0 +1,5 @@
@use 'styles/_colors';
.body {
background-color: colors.$grey-tint;
}

5
styles/_colors.scss Normal file
View File

@ -0,0 +1,5 @@
$black: #000000;
$white: #ffffff;
$charcoal: #111111;
$grey-tint: #f1f2f2;
$cta-yellow: #ffde17;