Skip to content

Commit 1826dcf

Browse files
committed
use purple as the primary and secondary colors instead of blue
1 parent ecce34d commit 1826dcf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

pages/requests/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
} from '@scientist-softserv/webstore-component-library'
1010
import {
1111
configureErrors,
12-
dark,
12+
primary,
1313
useDefaultWare,
1414
useAllRequests
1515
} from '../../utils'
@@ -58,7 +58,7 @@ const Requests = () => {
5858
<div className='text-end d-block mt-4 mb-2'>
5959
<LinkedButton
6060
buttonProps={{
61-
backgroundColor: dark,
61+
backgroundColor: primary,
6262
label: 'Initiate a New Request',
6363
size: 'large',
6464
}}

pages/requests/new/[ware].js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
addDays,
1818
configureErrors,
1919
createRequest,
20-
dark,
20+
primary,
2121
useInitializeRequest,
2222
} from '../../../utils'
2323

@@ -200,7 +200,7 @@ const StandardRequestOptions = ({ defaultRequiredDate, requestForm, updateReques
200200
</div>
201201
<Button
202202
addClass='btn btn-primary my-4 ms-auto d-block'
203-
backgroundColor={dark}
203+
backgroundColor={primary}
204204
label='Initiate Request'
205205
type='submit'
206206
size='large'

utils/theme/theme.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// these colors can be customized for each webstore instance. they are the default bootstrap theme colors and are used in bootstrap's theme_colors sass map, so updating these will also make sure that text overlaying areas with these background colors remains accessible. See https://getbootstrap.com/docs/5.0/customize/sass/#maps-and-loops for more details on how to add additional theme colors to this map.
22

3-
$primary: #294682;
4-
$secondary: #80A3D6;
3+
$primary: #614570;
4+
$secondary: #936AAA;
55
$light: #F2F2F2;
66
$dark: #070818;
77
$success: #B0E298;

0 commit comments

Comments
 (0)