Skip to content

Commit

Permalink
new collor options added
Browse files Browse the repository at this point in the history
  • Loading branch information
Nobatgeldi committed Oct 18, 2023
1 parent 853c633 commit 9ae6b2e
Show file tree
Hide file tree
Showing 17 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -169,3 +169,5 @@ build/*

# End of https://www.toptal.com/developers/gitignore/api/node,visualstudiocode
public/covisart/images/ngs/NGS.psd

public/covisart/images/ngs/NGS_v2.psd
Binary file modified public/covisart/images/ngs/RaceSeat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/covisart/images/ngs/RaceSeat.webp
Binary file not shown.
Binary file added public/covisart/images/ngs/colors/azure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/covisart/images/ngs/colors/azure.webp
Binary file not shown.
Binary file added public/covisart/images/ngs/colors/black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/covisart/images/ngs/colors/black.webp
Binary file not shown.
Binary file added public/covisart/images/ngs/colors/blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/covisart/images/ngs/colors/blue.webp
Binary file not shown.
Binary file added public/covisart/images/ngs/colors/goldenrod.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/covisart/images/ngs/colors/goldenrod.webp
Binary file not shown.
Binary file added public/covisart/images/ngs/colors/grey.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/covisart/images/ngs/colors/grey.webp
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/covisart/Configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function Configuration() {
}

function NGS(name) {
const motorImage = './covisart/images/ngs/' + name + '.webp'
const motorImage = './covisart/images/ngs/colors/' + name + '.webp'
return (
<img id={name} style={{ borderRadius: "10%",position: "relative"}} src={motorImage} alt={name} />
)
Expand Down
2 changes: 1 addition & 1 deletion src/covisart/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const state = proxy({
size: '450',
accessories:['JustSim','RaceSeat', 'cockpit' ],
accessory:'JustSim',
colors: ['grey','black', 'green' ],
colors: ['grey','black', 'blue', 'goldenrod', 'azure', 'lightslategray' ],
decals: ['react', 'three2', 'pmndrs'],
color: 'grey',
led: '#FF0000',
Expand Down

0 comments on commit 9ae6b2e

Please sign in to comment.