diff options
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | schema.sql | 3 | ||||
-rw-r--r-- | static/chroma.css | 5 | ||||
-rw-r--r-- | static/style.css | 5 |
4 files changed, 16 insertions, 0 deletions
@@ -1,3 +1,6 @@ +# SPDX-License-Identifier: AGPL-3.0-only +# SPDX-FileContributor: Runxi Yu <https://runxiyu.org> + .PHONY: clean version.go CFLAGS = -Wall -Wextra -Werror -pedantic -std=c99 -D_GNU_SOURCE @@ -1,3 +1,6 @@ +-- SPDX-License-Identifier: AGPL-3.0-only +-- SPDX-FileContributor: Runxi Yu <https://runxiyu.org> + CREATE TABLE groups ( id INTEGER GENERATED ALWAYS AS IDENTITY PRIMARY KEY, name TEXT NOT NULL UNIQUE, diff --git a/static/chroma.css b/static/chroma.css index 7157d04..b819e7b 100644 --- a/static/chroma.css +++ b/static/chroma.css @@ -1,3 +1,8 @@ +/* + * SPDX-License-Identifier: AGPL-3.0-only + * SPDX-FileContributor: Runxi Yu <https://runxiyu.org> + */ + @media (prefers-color-scheme: light) { /* Background */ .bg { ; } /* PreWrapper */ .chroma { ; } diff --git a/static/style.css b/static/style.css index 693d459..5954b10 100644 --- a/static/style.css +++ b/static/style.css @@ -1,3 +1,8 @@ +/* + * SPDX-License-Identifier: AGPL-3.0-only + * SPDX-FileContributor: Runxi Yu <https://runxiyu.org> + */ + /* Base styles and variables */ html { font-family: sans-serif; |