@use 'configure-palette';
@use './create-theme/create-theme';
@use 'color-palettes' as palette;
@use '../core';

$primary: configure-palette.daff-configure-palette(palette.$daff-blue, 60);
$secondary: configure-palette.daff-configure-palette(palette.$daff-purple, 60);
$tertiary: configure-palette.daff-configure-palette(palette.$daff-turquoise, 60);

$theme: create-theme.daff-create-theme(
	('primary': $primary, 'secondary': $secondary, 'tertiary': $tertiary, 'mode': 'light')
);

$primary-dark: configure-palette.daff-configure-palette(palette.$daff-blue, 50);
$secondary-dark: configure-palette.daff-configure-palette(palette.$daff-purple, 50);
$tertiary-dark: configure-palette.daff-configure-palette(palette.$daff-turquoise, 50);

$theme-dark: create-theme.daff-create-theme(
	('primary': $primary-dark, 'secondary': $secondary-dark, 'tertiary': $tertiary-dark, 'mode': 'dark')
);
