diff options
author | Dan Finlay <dan@danfinlay.com> | 2018-04-13 05:39:28 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2018-04-13 05:46:05 +0800 |
commit | 136caa2034e151763347d20488f2516277631bc9 (patch) | |
tree | 0b8d09b0f9003092611b37acf48ffc67e718cbd8 /docs/jsdocs/styles/prettify.css | |
parent | 29dab1e9e00c1c1e6ad834026df51b2839d3171d (diff) | |
download | tangerine-wallet-browser-136caa2034e151763347d20488f2516277631bc9.tar.gz tangerine-wallet-browser-136caa2034e151763347d20488f2516277631bc9.tar.zst tangerine-wallet-browser-136caa2034e151763347d20488f2516277631bc9.zip |
Add JSDocs Page and Script
Includes new script `npm run doc` for generating docs page.
Diffstat (limited to 'docs/jsdocs/styles/prettify.css')
-rw-r--r-- | docs/jsdocs/styles/prettify.css | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/docs/jsdocs/styles/prettify.css b/docs/jsdocs/styles/prettify.css new file mode 100644 index 000000000..629bde515 --- /dev/null +++ b/docs/jsdocs/styles/prettify.css @@ -0,0 +1,79 @@ +.pln {
+ color: #ddd;
+}
+
+/* string content */
+.str {
+ color: #61ce3c;
+}
+
+/* a keyword */
+.kwd {
+ color: #fbde2d;
+}
+
+/* a comment */
+.com {
+ color: #aeaeae;
+}
+
+/* a type name */
+.typ {
+ color: #8da6ce;
+}
+
+/* a literal value */
+.lit {
+ color: #fbde2d;
+}
+
+/* punctuation */
+.pun {
+ color: #ddd;
+}
+
+/* lisp open bracket */
+.opn {
+ color: #000000;
+}
+
+/* lisp close bracket */
+.clo {
+ color: #000000;
+}
+
+/* a markup tag name */
+.tag {
+ color: #8da6ce;
+}
+
+/* a markup attribute name */
+.atn {
+ color: #fbde2d;
+}
+
+/* a markup attribute value */
+.atv {
+ color: #ddd;
+}
+
+/* a declaration */
+.dec {
+ color: #EF5050;
+}
+
+/* a variable name */
+.var {
+ color: #c82829;
+}
+
+/* a function name */
+.fun {
+ color: #4271ae;
+}
+
+/* Specify class=linenums on a pre to get line numbering */
+ol.linenums {
+ margin-top: 0;
+ margin-bottom: 0;
+}
|