Skip to content

Commit

Permalink
Merge pull request #3 from Humphries-Lab/update_text_content
Browse files Browse the repository at this point in the history
Create orange_palette.scss
  • Loading branch information
mdhumphries authored Aug 12, 2024
2 parents 03aaf13 + 513c969 commit 87e442c
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions images/orange_palette.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/* Coolors Exported Palette - https://coolors.co/5f0f40-9a031e-fb8b24-e36414-0f4c5c */

/* CSS HEX */
--tyrian-purple: #5f0f40ff;
--carmine: #9a031eff;
--ut-orange: #fb8b24ff;
--spanish-orange: #e36414ff;
--midnight-green: #0f4c5cff;

/* CSS HSL */
--tyrian-purple: hsla(323, 73%, 22%, 1);
--carmine: hsla(349, 96%, 31%, 1);
--ut-orange: hsla(29, 96%, 56%, 1);
--spanish-orange: hsla(23, 84%, 48%, 1);
--midnight-green: hsla(192, 72%, 21%, 1);

/* SCSS HEX */
$tyrian-purple: #5f0f40ff;
$carmine: #9a031eff;
$ut-orange: #fb8b24ff;
$spanish-orange: #e36414ff;
$midnight-green: #0f4c5cff;

/* SCSS HSL */
$tyrian-purple: hsla(323, 73%, 22%, 1);
$carmine: hsla(349, 96%, 31%, 1);
$ut-orange: hsla(29, 96%, 56%, 1);
$spanish-orange: hsla(23, 84%, 48%, 1);
$midnight-green: hsla(192, 72%, 21%, 1);

/* SCSS RGB */
$tyrian-purple: rgba(95, 15, 64, 1);
$carmine: rgba(154, 3, 30, 1);
$ut-orange: rgba(251, 139, 36, 1);
$spanish-orange: rgba(227, 100, 20, 1);
$midnight-green: rgba(15, 76, 92, 1);

/* SCSS Gradient */
$gradient-top: linear-gradient(0deg, #5f0f40ff, #9a031eff, #fb8b24ff, #e36414ff, #0f4c5cff);
$gradient-right: linear-gradient(90deg, #5f0f40ff, #9a031eff, #fb8b24ff, #e36414ff, #0f4c5cff);
$gradient-bottom: linear-gradient(180deg, #5f0f40ff, #9a031eff, #fb8b24ff, #e36414ff, #0f4c5cff);
$gradient-left: linear-gradient(270deg, #5f0f40ff, #9a031eff, #fb8b24ff, #e36414ff, #0f4c5cff);
$gradient-top-right: linear-gradient(45deg, #5f0f40ff, #9a031eff, #fb8b24ff, #e36414ff, #0f4c5cff);
$gradient-bottom-right: linear-gradient(135deg, #5f0f40ff, #9a031eff, #fb8b24ff, #e36414ff, #0f4c5cff);
$gradient-top-left: linear-gradient(225deg, #5f0f40ff, #9a031eff, #fb8b24ff, #e36414ff, #0f4c5cff);
$gradient-bottom-left: linear-gradient(315deg, #5f0f40ff, #9a031eff, #fb8b24ff, #e36414ff, #0f4c5cff);
$gradient-radial: radial-gradient(#5f0f40ff, #9a031eff, #fb8b24ff, #e36414ff, #0f4c5cff);

0 comments on commit 87e442c

Please sign in to comment.