Skip to content

Instantly share code, notes, and snippets.

@adam-cowley
Created January 30, 2020 21:03
Show Gist options
  • Save adam-cowley/ae26ec84a3282337ded1125e077c2ce5 to your computer and use it in GitHub Desktop.
Save adam-cowley/ae26ec84a3282337ded1125e077c2ce5 to your computer and use it in GitHub Desktop.
Custom icons in Neo4j Browser
node {
diameter: 50px;
color: #A5ABB6;
border-color: #9AA1AC;
border-width: 2px;
text-color-internal: #FFFFFF;
font-size: 10px;
}
relationship {
color: #A5ABB6;
shaft-width: 1px;
font-size: 8px;
padding: 3px;
text-color-external: #000000;
text-color-internal: #FFFFFF;
caption: "<type>";
}
node.Movie {
color: red;
border-color: green;
text-color-internal: white;
caption: "🎥";
icon-code: h;
}
node.Person {
color: blue;
border-color: red;
text-color-internal: white;
caption: "🖖";
icon-code: h;
}
@adam-cowley
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment