Skip to content

Commit 2a43df7

Browse files
committed
update some colors
1 parent 749c62d commit 2a43df7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/source/examples/simple_dashboard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ async def animate():
5858
"data": data,
5959
"style": {
6060
"parent": {"width": "500px"},
61-
"data": {"stroke": "#c43a31"},
61+
"data": {"stroke": "royalblue"},
6262
},
6363
}
6464
)

docs/source/examples/super_simple_chart.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
],
2626
"height": 300,
2727
"width": 500,
28-
"color": "#24909d",
28+
"color": "royalblue",
2929
"lineWidth": 4,
30-
"axisColor": "#bdc3c7",
30+
"axisColor": "silver",
3131
}
3232
)
3333
)

docs/source/examples/victory_chart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33

44
victory = idom.install("victory", fallback="loading...")
5-
bar_style = {"parent": {"width": "500px"}, "data": {"fill": "#c43a31"}}
5+
bar_style = {"parent": {"width": "500px"}, "data": {"fill": "royalblue"}}
66
idom.run(idom.component(lambda: victory.VictoryBar({"style": bar_style})))

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def docs(session: Session) -> None:
6464
"html",
6565
"docs/source",
6666
"docs/build",
67-
env={"PYTHONPATH": os.getcwd(), "IDOM_DEBUG_MODE": "1"},
67+
env={"PYTHONPATH": os.getcwd()},
6868
)
6969

7070

0 commit comments

Comments
 (0)