-
Notifications
You must be signed in to change notification settings - Fork 1
/
_theme.scss
31 lines (30 loc) · 1.11 KB
/
_theme.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@use 'sass:map';
// ----------------------------------------------
// Edit theme settings below at your convenience
// ----------------------------------------------
// - Main Background Image
$appBackgroundImage : '~/img/background.png';
// - Fonts family set
$appFontsFamily : Avenir, 'Avenir Next', 'Segoe UI', sans-serif;
// - Theme color palette
$theme: (
'mainBackgroundColor' : #212240,
'backgroundContainer' : #ffffff,
'loader' : #3D8CFF,
'quantityButton' : #3D8CFF,
'quantityInput' : #dbdbe0,
'header' : #000000,
'subHeader' : #717285,
'headerBorder' : rgba(33, 34, 64, 0.16),
'tableHeader' : #a6a7b3,
'asideBlockBorder' : rgba(33, 34, 64, 0.16),
'productName' : #3D8CFF,
'productPrice' : #000000,
'thumbsBorder' : #cacad1,
'summaryBackground' : #f3f3f3,
'summaryTextColor' : #212240,
'ctaColor' : #ffffff,
'ctaBackground' : #3D8CFF,
);
// - Responsive threshold
$breakpoint : 760px;