-
-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #588 from supabase/al/merge-master-into-rc
merge master into rc
- Loading branch information
Showing
50 changed files
with
40,782 additions
and
180 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 |
---|---|---|
|
@@ -104,4 +104,4 @@ dist | |
# TernJS port file | ||
.tern-port | ||
|
||
docs/ | ||
docs/v2 |
Empty file.
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 @@ | ||
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. |
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,146 @@ | ||
:root { | ||
--light-hl-0: #000000; | ||
--dark-hl-0: #d4d4d4; | ||
--light-hl-1: #af00db; | ||
--dark-hl-1: #c586c0; | ||
--light-hl-2: #001080; | ||
--dark-hl-2: #9cdcfe; | ||
--light-hl-3: #a31515; | ||
--dark-hl-3: #ce9178; | ||
--light-hl-4: #008000; | ||
--dark-hl-4: #6a9955; | ||
--light-hl-5: #0000ff; | ||
--dark-hl-5: #569cd6; | ||
--light-hl-6: #0070c1; | ||
--dark-hl-6: #4fc1ff; | ||
--light-hl-7: #795e26; | ||
--dark-hl-7: #dcdcaa; | ||
--light-hl-8: #800000; | ||
--dark-hl-8: #808080; | ||
--light-hl-9: #800000; | ||
--dark-hl-9: #569cd6; | ||
--light-hl-10: #000000ff; | ||
--dark-hl-10: #d4d4d4; | ||
--light-hl-11: #ff0000; | ||
--dark-hl-11: #9cdcfe; | ||
--light-hl-12: #0000ff; | ||
--dark-hl-12: #ce9178; | ||
--light-code-background: #f5f5f5; | ||
--dark-code-background: #1e1e1e; | ||
} | ||
|
||
@media (prefers-color-scheme: light) { | ||
:root { | ||
--hl-0: var(--light-hl-0); | ||
--hl-1: var(--light-hl-1); | ||
--hl-2: var(--light-hl-2); | ||
--hl-3: var(--light-hl-3); | ||
--hl-4: var(--light-hl-4); | ||
--hl-5: var(--light-hl-5); | ||
--hl-6: var(--light-hl-6); | ||
--hl-7: var(--light-hl-7); | ||
--hl-8: var(--light-hl-8); | ||
--hl-9: var(--light-hl-9); | ||
--hl-10: var(--light-hl-10); | ||
--hl-11: var(--light-hl-11); | ||
--hl-12: var(--light-hl-12); | ||
--code-background: var(--light-code-background); | ||
} | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
:root { | ||
--hl-0: var(--dark-hl-0); | ||
--hl-1: var(--dark-hl-1); | ||
--hl-2: var(--dark-hl-2); | ||
--hl-3: var(--dark-hl-3); | ||
--hl-4: var(--dark-hl-4); | ||
--hl-5: var(--dark-hl-5); | ||
--hl-6: var(--dark-hl-6); | ||
--hl-7: var(--dark-hl-7); | ||
--hl-8: var(--dark-hl-8); | ||
--hl-9: var(--dark-hl-9); | ||
--hl-10: var(--dark-hl-10); | ||
--hl-11: var(--dark-hl-11); | ||
--hl-12: var(--dark-hl-12); | ||
--code-background: var(--dark-code-background); | ||
} | ||
} | ||
|
||
body.light { | ||
--hl-0: var(--light-hl-0); | ||
--hl-1: var(--light-hl-1); | ||
--hl-2: var(--light-hl-2); | ||
--hl-3: var(--light-hl-3); | ||
--hl-4: var(--light-hl-4); | ||
--hl-5: var(--light-hl-5); | ||
--hl-6: var(--light-hl-6); | ||
--hl-7: var(--light-hl-7); | ||
--hl-8: var(--light-hl-8); | ||
--hl-9: var(--light-hl-9); | ||
--hl-10: var(--light-hl-10); | ||
--hl-11: var(--light-hl-11); | ||
--hl-12: var(--light-hl-12); | ||
--code-background: var(--light-code-background); | ||
} | ||
|
||
body.dark { | ||
--hl-0: var(--dark-hl-0); | ||
--hl-1: var(--dark-hl-1); | ||
--hl-2: var(--dark-hl-2); | ||
--hl-3: var(--dark-hl-3); | ||
--hl-4: var(--dark-hl-4); | ||
--hl-5: var(--dark-hl-5); | ||
--hl-6: var(--dark-hl-6); | ||
--hl-7: var(--dark-hl-7); | ||
--hl-8: var(--dark-hl-8); | ||
--hl-9: var(--dark-hl-9); | ||
--hl-10: var(--dark-hl-10); | ||
--hl-11: var(--dark-hl-11); | ||
--hl-12: var(--dark-hl-12); | ||
--code-background: var(--dark-code-background); | ||
} | ||
|
||
.hl-0 { | ||
color: var(--hl-0); | ||
} | ||
.hl-1 { | ||
color: var(--hl-1); | ||
} | ||
.hl-2 { | ||
color: var(--hl-2); | ||
} | ||
.hl-3 { | ||
color: var(--hl-3); | ||
} | ||
.hl-4 { | ||
color: var(--hl-4); | ||
} | ||
.hl-5 { | ||
color: var(--hl-5); | ||
} | ||
.hl-6 { | ||
color: var(--hl-6); | ||
} | ||
.hl-7 { | ||
color: var(--hl-7); | ||
} | ||
.hl-8 { | ||
color: var(--hl-8); | ||
} | ||
.hl-9 { | ||
color: var(--hl-9); | ||
} | ||
.hl-10 { | ||
color: var(--hl-10); | ||
} | ||
.hl-11 { | ||
color: var(--hl-11); | ||
} | ||
.hl-12 { | ||
color: var(--hl-12); | ||
} | ||
pre, | ||
code { | ||
background: var(--code-background); | ||
} |
Oops, something went wrong.