Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions news/colors.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* <news item>

**Changed:**

* Plots now use colors from the billinge-group matplotlib stylesheet, bg-mpl-stylesheets

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* <news item>

**Security:**

* <news item>
6 changes: 3 additions & 3 deletions src/diffpy/pdfgui/gui/extendedplotframe.py
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

double checked:

bg_blue = "#0B3C5D"
bg_red = "#B82601"
bg_green = "#1C6B0A"

lgtm!

Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,9 @@ def __translateStyles(self, style):
"triangle": "^",
}
colorDict = {
"blue": "b",
"green": "g",
"red": "r",
"blue": "#0B3C5D",
"green": "#1C6B0A",
"red": "#B82601",
"cyan": "c",
"magenta": "m",
"yellow": "y",
Expand Down
Loading