diff options
author | rbbhn <matthew.mccaman@gmail.com> | 2025-01-21 22:30:48 -0600 |
---|---|---|
committer | rbbhn <matthew.mccaman@gmail.com> | 2025-01-21 22:30:48 -0600 |
commit | a6082b54fcccf9f924de93a8bd6ed03250c70c09 (patch) | |
tree | 8925f54f5f1af88a8e660510b237155809d6e53d /assets/css/colors/base16-ocean.css | |
parent | 8a66725cef2a28ec0f9f377169ef34fbb20cf747 (diff) |
Added base16-default themes
Diffstat (limited to 'assets/css/colors/base16-ocean.css')
-rw-r--r-- | assets/css/colors/base16-ocean.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/assets/css/colors/base16-ocean.css b/assets/css/colors/base16-ocean.css new file mode 100644 index 0000000..c5bdd5a --- /dev/null +++ b/assets/css/colors/base16-ocean.css @@ -0,0 +1,15 @@ +:root { + --content-primary: rgb(43, 48, 59); /*base00*/ + --content-secondary: rgb(101, 115, 126); /*base03*/ + --background: rgb(239, 241, 245); /*base07*/ + --code-background: rgb(223, 225, 232); /*base06*/ + --code-border: rgb(192, 197, 206); /*base05*/ +} + +.dark { + --content-primary: rgb(239, 241, 245); /*base07*/ + --content-secondary: rgb(167, 173, 186); /*base04*/ + --background: rgb(43, 48, 59); /*base00*/ + --code-background: rgb(52, 61, 70); /*base01*/ + --code-border: rgb(79, 91, 102); /*base02*/ +}
\ No newline at end of file |