commit 7bc8e8bfb274f5190edd5a47a6235aef8afc9f5f Author: Zakarya Date: Wed Jun 19 14:56:47 2024 -0700 Initial commit with makefile, hello world, and naming convention diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..53752db --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +output diff --git a/makefile b/makefile new file mode 100644 index 0000000..984f2d6 --- /dev/null +++ b/makefile @@ -0,0 +1,9 @@ +FORMAT = svg +IN = src +OUT = output/$(FORMAT) +VPATH = $(IN):$(OUT) + + +%.svg: %.asy + mkdir -p $(OUT) + asy -f $(FORMAT) $< -o $(OUT)/$* diff --git a/naming-convention.md b/naming-convention.md new file mode 100644 index 0000000..0186f30 --- /dev/null +++ b/naming-convention.md @@ -0,0 +1,16 @@ +# This is the naming convention for the Zak Branding files. +The main rule for the source files is to be named with snake_case. For example: + +- `hello_world` +- `zakhat_solid_black` + +The order of the adjectives should generally have the main concept first, variant description in the middle, and colors last. For example: + +- `zakhat_small_solid_blue` + +The colors should be written with the name first, then the variant number without a space ( ), underline (_) or dash (-). + +- `helloworld_blue3` - this refers to Zakarya Middle Blue. + +The colors should refer to the Zakarya Branding color chart. All colors should be consistent throughout all designs, including transparency. + diff --git a/src/helloworld.asy b/src/helloworld.asy new file mode 100644 index 0000000..6f7d501 --- /dev/null +++ b/src/helloworld.asy @@ -0,0 +1 @@ +label("Hello, World!");