Skip to content

Commit 2731818

Browse files
committed
chore: updated colors
1 parent 488efdf commit 2731818

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/js/table.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ import Form from 'react-jsonschema-form';
1616
ReactGA.pageview(window.location.pathname + window.location.search);
1717

1818
const ENDPOINT_URL = process.env.REACT_APP_ENDPOINT_URL;
19-
const colors = ['#FDEE6E', '#C490E8', '#F8806C']; // YELLOW, PURPLE, RED
19+
//const colors = ['#105E54', '#CBBEFF', '#513EC3']; // YELLOW, PURPLE, RED -> GREEN, PURPLE, BLACK
20+
const colors = ['#513EC3', '#513EC3', '#513EC3']; // PURPLE
2021

2122
const shuffle = (a) => {
2223
for (let i = a.length - 1; i > 0; i--) {
@@ -493,7 +494,7 @@ class Entry extends React.Component {
493494
{commitment && (
494495
<div
495496
className='tag'
496-
style={{ backgroundColor: '#0CB08A' }}>
497+
style={{ backgroundColor: '#105E54' }}>
497498
Commitment: {commitment}
498499
</div>
499500
)}
@@ -503,7 +504,9 @@ class Entry extends React.Component {
503504
<div
504505
className='tag'
505506
key={vertical}
506-
style={{ backgroundColor: colors[this.getColorNum(vertical)] }}>
507+
style={{
508+
backgroundColor: colors[this.getColorNum(vertical)],
509+
}}>
507510
{vertical}
508511
</div>
509512
))}

src/sass/table.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
}
138138

139139
.organizerCard {
140-
background: #f5f3f2 !important;
140+
background: #E8FEF3 !important;
141141
}
142142

143143
.header {

0 commit comments

Comments
 (0)