mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
94 lines
2.4 KiB
Text
94 lines
2.4 KiB
Text
---
|
|
id: example
|
|
title: Example UI Configuration
|
|
sidebar_label: Example
|
|
keywords:
|
|
[hyperglass, looking glass, web ui, gui, theme, colors, branding, example]
|
|
description: See how to the hyperglass UI should be configured.
|
|
---
|
|
|
|
This is an example of every UI configuration option. You don't need to specify any of these for hyperglass to work; all parameters are optional.
|
|
|
|
```yaml title="hyperglass.yaml"
|
|
web:
|
|
credit:
|
|
enable: true
|
|
dns_provider:
|
|
name: cloudflare
|
|
url: https://cloudflare-dns.com/dns-query
|
|
greeting:
|
|
button: Continue
|
|
enable: true
|
|
file: /etc/hyperglass/greeting.md
|
|
required: true
|
|
title: Welcome
|
|
links:
|
|
- order: 0
|
|
show_icon: true
|
|
side: left
|
|
title: PeeringDB
|
|
url: https://www.peeringdb.com/asn/{primary_asn}
|
|
logo:
|
|
dark: /Users/ml/dev/hyperglass/hyperglass/images/hyperglass-dark.svg
|
|
favicon: /Users/ml/dev/hyperglass/hyperglass/images/hyperglass-icon.svg
|
|
height: null
|
|
light: /Users/ml/dev/hyperglass/hyperglass/images/hyperglass-light.svg
|
|
width: 100%
|
|
menus:
|
|
- content: /etc/hyperglass/terms.md
|
|
order: 0
|
|
side: left
|
|
title: Terms
|
|
- content: /etc/hyperglass/help.md
|
|
order: 0
|
|
side: left
|
|
title: Help
|
|
opengraph:
|
|
image: /etc/hyperglass/opengraph.png
|
|
text:
|
|
cache_icon: Cached from {time} UTC
|
|
cache_prefix: "Results cached for "
|
|
complete_time: Completed in {seconds}
|
|
fqdn_error: Unable to resolve {fqdn}
|
|
fqdn_error_button: Try Again
|
|
fqdn_message: Your browser has resolved {fqdn} to
|
|
fqdn_tooltip: Use {protocol}
|
|
no_communities: No Communities
|
|
query_location: Location
|
|
query_target: Target
|
|
query_type: Query Type
|
|
query_vrf: Routing Table
|
|
rpki_invalid: Invalid
|
|
rpki_unknown: No ROAs Exist
|
|
rpki_unverified: Not Verified
|
|
rpki_valid: Valid
|
|
subtitle: Network Looking Glass
|
|
title: hyperglass
|
|
title_mode: logo_subtitle
|
|
theme:
|
|
colors:
|
|
black: "#000"
|
|
blue: "#314cb6"
|
|
cyan: "#118ab2"
|
|
danger: "#d84b4b"
|
|
dark: "#010101"
|
|
error: "#ff6b35"
|
|
gray: "#c1c7cc"
|
|
green: "#35b246"
|
|
light: "#f5f6f7"
|
|
orange: "#ff6b35"
|
|
pink: "#f2607d"
|
|
primary: "#118ab2"
|
|
purple: "#8d30b5"
|
|
red: "#d84b4b"
|
|
secondary: "#314cb6"
|
|
success: "#35b246"
|
|
teal: "#35b299"
|
|
warning: "#edae49"
|
|
white: "#fff"
|
|
yellow: "#edae49"
|
|
default_color_mode: null
|
|
fonts:
|
|
body: Nunito
|
|
mono: Fira Code
|
|
```
|