layout | title |
---|---|
default |
rolling |
- Clone or fork this repo
- Create a new directory under the
themes/
directory with the name of your theme. For example, if your theme name issunburst
, then there should be a directory calledthemes/sunburst
. - Copy an existing *.puml file (i.e. puml-theme-cerulean.puml) into the new directory, and name it
puml-theme-<theme name>.puml
themes/sunburst/puml-theme-sunburst.puml
- Open the new file for editing
- Change the
$THEME
variable to the name of your theme.
!$THEME = "sunburst"
- Change the
$BGCOLOR
variable to the default background color of the theme - Proceed to edit the file to make changes to the colors. Most likely you will only need to make changes to the variables that are declared towards the top of the file.
- Once all edits are complete, you can generate the images. Preferred format is
svg
. There is a build scripts in thebin/
directory. You can use thebuild.sh
script on Linux or using git bash on windows. You may have to modify the path to the plantuml.jar file in the script (please do not commit this file after modifying path to script). The first argument to the script is the theme name, and execute it from the root puml-themes directory:
bin/build.sh sunburst
This will save the images into the theme directory. 9. Submit a pull request for the new theme, or you can host it on your own if you want.
Cheers!
This creates a small alpine based container with graphviz and related dependencies to run the build.sh
or buildall.sh
commands to generate images for your theme or for all themes
First build your image
docker-compose build
Then Create an .env
file in your workspace with the contents as below; set the THEME variable to the name of your theme
# Specify theme name to be built
# Leave blank or set to 'all' to build all themes
THEME=
Example: to build the carbon-gray theme
# Specify theme name to be built
# Leave blank or set to 'all' to build all themes
THEME=carbon-gray
then run
docker-compose up
This will generate images for your specific theme or all themes if left blank
You can also do the following in lieu of creating a .env
file
THEME=carbon-gray docker-compose up
To destroy the container
docker-compose down