Initial commit with makefile, hello world, and naming convention

This commit is contained in:
2024-06-19 14:56:47 -07:00
commit 7bc8e8bfb2
4 changed files with 27 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
output

9
makefile Normal file
View File

@ -0,0 +1,9 @@
FORMAT = svg
IN = src
OUT = output/$(FORMAT)
VPATH = $(IN):$(OUT)
%.svg: %.asy
mkdir -p $(OUT)
asy -f $(FORMAT) $< -o $(OUT)/$*

16
naming-convention.md Normal file
View File

@ -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.

1
src/helloworld.asy Normal file
View File

@ -0,0 +1 @@
label("Hello, World!");