Skip to content

Commit

Permalink
improves color map
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Jan 24, 2024
1 parent 4f6066e commit 4e2eb93
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions dcm_examples/greta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -287,25 +287,25 @@ levels:
- name: Level1
short_name: Level1
id: Level1
color_code: '#FF5733'
color_code: '#ECEABE'
level: 1
utf8_icon:
- name: Level2
short_name: Level2
id: Level2
color_code: '#FFAB33'
color_code: '#C8D575'
level: 2
utf8_icon: ⭐⭐
- name: Level3
short_name: Level3
id: Level3
color_code: '#FFE333'
color_code: '#AEBF3F'
level: 3
utf8_icon: ⭐⭐⭐
- name: Level4
short_name: Level4
id: Level4
color_code: '#33FF5B'
color_code: '#7D8A2C'
level: 4
utf8_icon: ⭐⭐⭐⭐
element_names:
Expand Down
8 changes: 4 additions & 4 deletions tests/test_greta.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ def test_greta_json(self):
# Define color codes for competence levels
color_codes = {
0: "#888888", # Grey for level 0
1: "#FF5733", # Red for level 1
2: "#FFAB33", # Orange for level 2
3: "#FFE333", # Yellow for level 3
4: "#33FF5B", # Green for level 4
1: "#ECEABE", # Light Green for level 1
2: "#C8D575", # Olive Green for level 2
3: "#AEBF3F", # Medium Green for level 3
4: "#7D8A2C", # Dark Green for level 4
}

# Define icons for competence levels (replace with actual icon names)
Expand Down

0 comments on commit 4e2eb93

Please sign in to comment.