From 1f0e714b0869d6e647a2157b0742f630393f8d02 Mon Sep 17 00:00:00 2001 From: Azalea Gui Date: Thu, 9 Feb 2023 20:13:01 -0500 Subject: [PATCH] [+] Color constants --- src/App.tsx | 4 ++-- src/app.sass | 27 +++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 81b88c1..306b2b5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -41,12 +41,12 @@ export default function App() { return ( // Full screen container -
+
{/* Content container */}
-

File Listing

+

File Listing

{/* Breadcrumbs */}
diff --git a/src/app.sass b/src/app.sass index 4254b49..945a216 100644 --- a/src/app.sass +++ b/src/app.sass @@ -1,2 +1,29 @@ .tippy-box max-width: unset !important + +.color-emp + color: #ebadb6 + +.color-main + color: #c49098 + +.color-sub + color: #ad7a82 + +.color-subsub + color: #77545a + +.color-alt + color: #ebd6b7 + +.color-bg-lighter + color: #211D1D + +.color-bg + color: #1b1616 + +.color-bg-darker + color: #181414 + +.color-sub.active + @extend .color-emp \ No newline at end of file