Created
February 4, 2019 01:07
-
-
Save derek73/fee873ac8ddb1baf3f5ef969b134be89 to your computer and use it in GitHub Desktop.
neo4j styling
This file contains hidden or 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
| node { | |
| diameter: 70px; | |
| color: #A5ABB6; | |
| border-color: #9AA1AC; | |
| border-width: 2px; | |
| text-color-internal: #FFFFFF; | |
| font-size: 12px; | |
| } | |
| relationship { | |
| color: #A5ABB6; | |
| shaft-width: 1px; | |
| font-size: 10px; | |
| padding: 3px; | |
| text-color-external: #000000; | |
| text-color-internal: #FFFFFF; | |
| caption: '<type>'; | |
| } | |
| node.Person { | |
| color: #A5ABB6; | |
| border-color: #9AA1AC; | |
| text-color-internal: #FFFFFF; | |
| caption: '[{age}] {username}'; | |
| } | |
| node.Couple { | |
| color: #FF756E; | |
| border-color: #E06760; | |
| text-color-internal: #FFFFFF; | |
| } | |
| node.Male { | |
| color: #68BDF6; | |
| border-color: #5CA8DB; | |
| text-color-internal: #FFFFFF; | |
| } | |
| node.Female { | |
| color: #DE9BF9; | |
| border-color: #BF85D6; | |
| text-color-internal: #FFFFFF; | |
| } | |
| node.Transsexual { | |
| color: #FFD86E; | |
| border-color: #EDBA39; | |
| text-color-internal: #604A0E; | |
| } | |
| relationship.WATCHING { | |
| color: #FF756E; | |
| border-color: #E06760; | |
| text-color-internal: #FFFFFF; | |
| } | |
| node.Favorite { | |
| color: #6DCE9E; | |
| border-color: #60B58B; | |
| text-color-internal: #FFFFFF; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment