-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
110 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
include ../Makefile.common | ||
|
||
# vim: noet sw=8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Agate Theme for Sabaki | ||
|
||
A theme with agate stones and a kaya board for [Sabaki](http://sabaki.yichuanshen.de/), | ||
Rendered in [Blender](https://www.blender.org/). | ||
|
||
![Screenshot](Screenshot.jpg) | ||
|
||
## Installation | ||
|
||
[Download](https://github.com/billhails/SabakiThemes/releases) the theme file and install it directly inside Sabaki | ||
under 'Preferences' > 'Themes' > 'Install Theme...'. | ||
|
||
## Build | ||
|
||
To create a Sabaki theme archive, install dependencies using npm, then run the build script: | ||
|
||
~~~ | ||
npm install | ||
npm run build | ||
~~~ | ||
|
||
This will create `agate.sabakitheme.asar`. | ||
|
||
## License | ||
|
||
Everything is released under [public domain](http://creativecommons.org/publicdomain/zero/1.0/). |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"devDependencies": { | ||
"asar": "^0.13.0" | ||
}, | ||
"scripts": { | ||
"build": "asar pack ./theme ./agate.sabakitheme.asar" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "Agate", | ||
"version": "0.1.0", | ||
"description": "A theme with agate stones for Sabaki", | ||
"author": "Bill Hails", | ||
"license": "CC0-1.0", | ||
"homepage": "https://github.com/billhails/SabakiThemes", | ||
"main": "styles.css" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
.shudan-goban { | ||
--shudan-board-border-width: 0; | ||
--shudan-board-foreground-color: #222; | ||
|
||
--shudan-black-background-color: #0E0F0E; | ||
--shudan-black-foreground-color: #eee; | ||
|
||
--shudan-white-background-color: #EBEBEB; | ||
--shudan-white-foreground-color: #666; | ||
} | ||
|
||
.shudan-goban-image { | ||
background-image: url('images/Board.png'); | ||
} | ||
|
||
.shudan-stone-image.shudan-sign_1 { | ||
background-image: url('images/Black.png'); | ||
} | ||
|
||
.shudan-stone-image.shudan-sign_-1 { | ||
background-image: url('images/White.png'); | ||
} | ||
|
||
.shudan-vertex.shudan-sign_1 .shudan-shadow { | ||
background: #392f19; | ||
filter: drop-shadow(0.106em 0.106em 0.06em rgb(0 0 0 / 70%)); | ||
} | ||
|
||
.shudan-vertex.shudan-sign_-1 .shudan-shadow { | ||
background: #806b3f; | ||
filter: drop-shadow(0.106em 0.106em 0.06em rgb(0 0 0 / 30%)); | ||
} | ||
|
||
.shudan-vertex:not(.shudan-sign_0) .shudan-shadow { | ||
box-shadow: 0 0 0; | ||
} | ||
|
||
rect.shudan-gridline.shudan-horizontal, rect.shudan-gridline.shudan-vertical { | ||
stroke-width: 0.02em; | ||
stroke: var(--shudan-board-foreground-color); | ||
} | ||
|
||
main { | ||
background: #f0f0f0 url('images/Background.png') left top; | ||
} |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.