Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjusted cleanup colors for river, stream, and waste cells so that rivers appear light-grey-blue and wastes appear brown when rendered. Fixes #176 #177

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ldfrancis
Copy link

When the env is rendered, river and stream cells appear brown while waste cells appear light-grey-blue. This results from the rgb color list assigned to this cells in the cleanup color dictionary

# Custom colour dictionary
CLEANUP_COLORS = {'C': [100, 255, 255], # Cyan cleaning beam
'S': [113, 75, 24], # Light grey-blue stream cell
'H': [99, 156, 194], # brown waste cells
'R': [113, 75, 24]} # Light grey-blue river cell

The rgb list, [99, 156, 194], is light grey-blue while [113, 75, 24] is brown. The color dictionary was modified to depict the correct rgb color for light grey-blue and brown (i.e swapping the current values for light grey-blue and brown).

@ldfrancis
Copy link
Author

@eugenevinitsky, Please can you help review this?

@eugenevinitsky
Copy link
Owner

Hi, sorry about this. I don't check this repo very often; unfortunately the colors are correct on my machine. Any ideas why that might be?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants