-
Notifications
You must be signed in to change notification settings - Fork 8
feat: update greens/reds and font #797
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
0fb6d21
chore: update greens/reds
palashkaria 8241b8e
chore: update logo, tweak colors
palashkaria 3a79806
Merge branch 'main' of https://github.com/arangodb/docs-hugo into col…
Simran-B c7fe9da
Theme: Add Urbanist font
Simran-B d517708
Urbanist font for headlines, lead paragraphs, and card titles
Simran-B b7b0c4e
Add *.log to .gitignore
Simran-B 31f993d
Add all brand colors as CSS variables
Simran-B 879536c
Replace AG/AMP banner background with brand color gradient
Simran-B a435399
Update favicon
Simran-B d7e8107
Round code blocks
Simran-B f339466
Brand state color for admonitions
Simran-B 45e9589
Brand colors for links
Simran-B 7cd8c87
Use new CSS variables (with the same colors)
Simran-B d17e5ed
Tags with electric lime background
Simran-B 139774b
Replace avocado bling with a favicon for now
Simran-B c07dba5
Merge branch 'main' of https://github.com/arangodb/docs-hugo into col…
Simran-B File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ | |
| node_modules/ | ||
| *.pyc | ||
| /.vs | ||
| *.log | ||
|
|
||
| /site/data/*/api-docs.json | ||
| /site/public/ | ||
|
|
||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-2.15 KB
site/themes/arangodb-docs-theme/images/ArangoDB_Logo_White_small.png
Binary file not shown.
19 changes: 0 additions & 19 deletions
19
site/themes/arangodb-docs-theme/images/ArangoGraph_Logo.svg
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
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.
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 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
26 changes: 12 additions & 14 deletions
26
site/themes/arangodb-docs-theme/layouts/partials/favicon.html
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,12 @@ | ||
| {{- $assetBusting := not .Site.Params.disableAssetsBusting }} | ||
| {{- if (fileExists "/static/images/favicon.svg") }} | ||
| <link href="{{ "images/favicon.svg" | relURL }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="icon" type="image/svg+xml"> | ||
| {{- else if (fileExists "/static/images/favicon.png") }} | ||
| <link href="{{ "images/favicon.png" | relURL }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="icon" type="image/png"> | ||
| {{- else if (fileExists "/static/images/favicon.ico") }} | ||
| <link href="{{ "images/favicon.ico" | relURL }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="icon" type="image/x-icon"> | ||
| {{- else if (fileExists "/static/images/logo.svg") }} | ||
| <link href="{{ "images/logo.svg" | relURL }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="icon" type="image/svg+xml"> | ||
| {{- else if (fileExists "/static/images/logo.png") }} | ||
| <link href="{{ "images/logo.png" | relURL }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="icon" type="image/png"> | ||
| {{- else if (fileExists "/static/images/logo.ico") }} | ||
| <link href="{{ "images/logo.ico" | relURL }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="icon" type="image/x-icon"> | ||
| {{- end }} | ||
| {{- $assetBusting := not .Site.Params.disableAssetsBusting }} | ||
| {{- if (fileExists "images/favicon.ico") }} | ||
| <link href="{{ "images/favicon.ico" | relURL }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="icon" type="image/x-icon" sizes="any"> | ||
| {{- end }} | ||
| {{- if (fileExists "images/favicon.svg") }} | ||
| <link href="{{ "images/favicon.svg" | relURL }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="icon" type="image/svg+xml"> | ||
| {{- else if (fileExists "images/favicon.png") }} | ||
| <link href="{{ "images/favicon.png" | relURL }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="icon" type="image/png"> | ||
| {{- end }} | ||
| {{- if (fileExists "images/apple-touch-icon.png") }} | ||
| <link href="{{ "images/apple-touch-icon.png" | relURL }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="apple-touch-icon" sizes="180x180"> | ||
| {{- end }} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.