Add Makefile to concatenate syntax style.
This commit is contained in:
parent
e268734a3f
commit
31450effe7
1 changed files with 7 additions and 0 deletions
7
Makefile
Normal file
7
Makefile
Normal file
|
@ -0,0 +1,7 @@
|
|||
all: static/syntax.css
|
||||
|
||||
static/syntax.css: static/light-syntax.css static/dark-syntax.css
|
||||
cat static/light-syntax.css > $@
|
||||
echo '@media (prefers-color-scheme: dark) { ' >> $@
|
||||
cat static/dark-syntax.css >> $@
|
||||
echo '}' >> $@
|
Loading…
Add table
Add a link
Reference in a new issue