@@ -74,6 +74,14 @@ export const SnippetDetails = (props: Props): JSX.Element => {
{/* ACTIONS */}
+
diff --git a/client/src/styles/_variables.scss b/client/src/styles/_variables.scss
index 05a014f..6d4c54d 100644
--- a/client/src/styles/_variables.scss
+++ b/client/src/styles/_variables.scss
@@ -10,16 +10,16 @@ $gray-700: #495057;
$gray-800: #343a40;
$gray-900: #212529;
$black: #000;
-$blue: #3459e6;
+$blue: #375a7f;
$indigo: #6610f2;
$purple: #6f42c1;
-$pink: #d63384;
-$red: #da292e;
-$orange: #f8765f;
-$yellow: #f4bd61;
-$green: #2fb380;
+$pink: #e83e8c;
+$red: #e74c3c;
+$orange: #fd7e14;
+$yellow: #f39c12;
+$green: #00bc8c;
$teal: #20c997;
-$cyan: #287bb5;
+$cyan: #3498db;
$primary: $blue;
$secondary: $white;
$success: $green;
diff --git a/src/controllers/snippets.ts b/src/controllers/snippets.ts
index eb8769b..ab10976 100644
--- a/src/controllers/snippets.ts
+++ b/src/controllers/snippets.ts
@@ -215,6 +215,31 @@ export const countTags = asyncWrapper(
}
);
+/**
+ * @description Get raw snippet code
+ * @route /api/snippets/raw/:id
+ * @request GET
+ */
+export const getRawCode = asyncWrapper(
+ async (req: Request, res: Response, next: NextFunction): Promise