Initial commit with makefile, hello world, and naming convention
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
output
|
9
makefile
Normal file
9
makefile
Normal 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
16
naming-convention.md
Normal 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
1
src/helloworld.asy
Normal file
@ -0,0 +1 @@
|
|||||||
|
label("Hello, World!");
|
Reference in New Issue
Block a user