-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: create use_quarto_ext() & quarto-add cmd for using extensions
- Loading branch information
1 parent
73980ee
commit 0f54b8e
Showing
17 changed files
with
168 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
title: fnl | ||
author: Kelly Sovacool | ||
version: 0.1.3 | ||
quarto-required: ">=1.5.0" | ||
contributes: | ||
formats: | ||
html: | ||
theme: | ||
dark: [darkly, fnl-dark.scss] | ||
light: [flatly, fnl-light.scss] | ||
toc: true |
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
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
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
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,9 @@ | ||
""" | ||
Quarto HTML format with FNL branding guidelines | ||
First run `ccbr_tools quarto-add fnl`, then add the following to your `_quarto.yml` file: | ||
```yaml | ||
format: fnl-html | ||
``` | ||
""" |
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,11 @@ | ||
title: fnl | ||
author: Kelly Sovacool | ||
version: 0.1.3 | ||
quarto-required: ">=1.5.0" | ||
contributes: | ||
formats: | ||
html: | ||
theme: | ||
dark: [darkly, fnl-dark.scss] | ||
light: [flatly, fnl-light.scss] | ||
toc: true |
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 @@ | ||
/*-- scss:defaults --*/ | ||
|
||
// colors | ||
// https://nih.sharepoint.com/:b:/r/sites/NCI-Fred/Communications/Shared%20Documents/Branding%20guidelines%20LIVE.pdf?csf=1&web=1&e=e9PrVO | ||
|
||
// primary | ||
$black: #000000; | ||
$white: #ffffff; | ||
$lime: #7cc349; | ||
$teal: #296b7f; | ||
|
||
//secondary | ||
$teal-light: #4e9db5; | ||
$teal-dark: #19424e; | ||
$almost-black: #03191f; | ||
$lime-light: #b1ee85; | ||
$lime-dark: #528230; | ||
$orange: #ecba4c; | ||
|
||
// set colors | ||
$primary: $teal; | ||
$secondary: $lime; | ||
|
||
$body-bg: $almost-black; | ||
$body-color: $white; | ||
$link-color: $lime; | ||
|
||
$navbar-bg: $teal-dark; | ||
$navbar-hl: $lime-light; | ||
|
||
$footer-bg: $black; | ||
$footer-fg: $white; | ||
$footer-hl: $lime-light; | ||
|
||
$sidebar-hl: $lime-light; | ||
|
||
$code-block-bg-alpha: -0.8; | ||
$code-bg-alpha: -0.8; | ||
$code-alpha: 0.9; | ||
$code-bg: $teal-dark; | ||
$code-color: $orange; | ||
|
||
// font | ||
$font-family-sans-serif: "Roboto", sans-serif; | ||
$font-family-monospace: "Roboto Mono", monospace; |
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,32 @@ | ||
/*-- scss:defaults --*/ | ||
|
||
// colors | ||
// https://nih.sharepoint.com/:b:/r/sites/NCI-Fred/Communications/Shared%20Documents/Branding%20guidelines%20LIVE.pdf?csf=1&web=1&e=e9PrVO | ||
|
||
// primary | ||
$black: #000000; | ||
$white: #ffffff; | ||
$lime: #7cc349; | ||
$teal: #296b7f; | ||
|
||
//secondary | ||
$teal-light: #4e9db5; | ||
$teal-dark: #19424e; | ||
$almost-black: #03191f; | ||
$lime-light: #b1ee85; | ||
$lime-dark: #528230; | ||
$orange: #ecba4c; | ||
|
||
// set colors | ||
$primary: $teal-dark; | ||
$secondary: $lime; | ||
$link-color: $teal; | ||
|
||
$footer-bg: black; | ||
$footer-fg: white; | ||
|
||
$code-color: $lime-dark; | ||
|
||
// font | ||
$font-family-sans-serif: "Roboto", sans-serif; | ||
$font-family-monospace: "Roboto Mono", monospace; |
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