Skip to content

Commit

Permalink
Tweaked workflows and fixed colors
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKempen committed Feb 10, 2024
1 parent 2035b8f commit b3eda9c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Deploy
name: pages-deploy
on:
push:
branches:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: Documentation Build
name: test-build
on:
push:
pull_request:
types: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
Expand Down
12 changes: 6 additions & 6 deletions rc_lib/style/color.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ class Palette(Color, enum.Enum):
arbitrary.
"""

RED = mn.color.Colors.red_c.value
GREEN = mn.color.Colors.green_d.value
BLUE = mn.color.Colors.blue_d.value
YELLOW = mn.color.Colors.yellow_e.value
WHITE = mn.color.Colors.white.value
BLACK = mn.color.Colors.black.value
RED = mn.RED
GREEN = mn.GREEN
BLUE = mn.BLUE
YELLOW = mn.YELLOW
WHITE = mn.WHITE
BLACK = mn.BLACK


FOREGROUND: Color = Palette.WHITE
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sphinx-rtd-theme==1.2.0
myst-parser>=1.0.0

# animation libraries
manim>=0.17.3
manim>=0.18
numpy>=1.24.2
typing-extensions>=4.5.0

Expand Down

0 comments on commit b3eda9c

Please sign in to comment.