Skip to content

Commit dd733d7

Browse files
committed
remove scss color variables
1 parent 817801d commit dd733d7

File tree

3 files changed

+4
-16
lines changed

3 files changed

+4
-16
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
.contactCards {
2-
background-color: var(--white);
2+
background-color: var(--bg-contact-card);
33
}

styles/_variables.scss

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,6 @@ $medium-desktop-breakpoint: 1250px;
1010
$large-desktop-breakpoint: 1440px;
1111
$extra-large-breakpoint: 2560px;
1212

13-
//Colors
14-
$primary-content-color: #292929;
15-
$primary-bg-color: #eaeaea;
16-
$dark-bg-color: #023047;
17-
$light-bg-color: #8cd5e8;
18-
$primary-accent-color: #ffcc4c;
19-
$secondary-accent-color: #19aad1;
20-
$error: #be1313;
21-
$black: #000000;
22-
$white: #ffffff;
23-
$transparent: transparent;
24-
$box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
25-
$box-shadow-bottom: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
26-
2713
//Fonts
2814
$copy-font: 'Assistant';
2915
$heading-font: 'Open Sans';

styles/themes.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
:root {
2-
--white: #ffffff;
2+
--bg-contact-card: #ffffff;
33
--bg-color: #eaeaea;
44
}
55

6+
// placeholder colors
67
[data-theme='dark'] {
8+
--bg-contact-card: #232431;
79
--bg-color: #333;
810
}
911

0 commit comments

Comments
 (0)