diff --git a/src/css/main.css b/src/css/main.css index 57de4c1..39997c4 100644 --- a/src/css/main.css +++ b/src/css/main.css @@ -100,48 +100,4 @@ html, body { .modal-dialog.modal-xxl { max-width: 90vw; } -} - -select option { - color: var(--bs-dark); -} - -.alert { - color: var(--bs-dark); -} - -.theme-purple { - background-image: linear-gradient(90deg,#33b7e2,#5e62b0,#dc307c); -} - -.theme-green { - background-image: linear-gradient(90deg, #9ebd13 0%, #008552 100%); -} - -.theme-red { - background-image: linear-gradient(90deg, #d53369 0%, #daae51 100%); -} - -.theme-aqua { - background-image: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%); -} - -.theme-ocean { - background-image: linear-gradient(90deg, #1CB5E0 0%, #000851 100%); -} - -.theme-dusty { - background-image: linear-gradient(90deg, #fcff9e 0%, #c67700 100%); -} - -.theme-lilac { - background-image: linear-gradient(90deg, #efd5ff 0%, #515ada 100%); -} - -.theme-spring { - background-image: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%); -} - -.theme-shadow { - background-image: linear-gradient(90deg, #4b6cb7 0%, #182848 100%); } \ No newline at end of file diff --git a/src/css/theme.css b/src/css/theme.css new file mode 100644 index 0000000..a9078d1 --- /dev/null +++ b/src/css/theme.css @@ -0,0 +1,54 @@ +/* +Copyright 2021 Netsyms Technologies. +This Source Code Form is subject to the terms of the Mozilla Public +License, v. 2.0. If a copy of the MPL was not distributed with this +file, You can obtain one at http://mozilla.org/MPL/2.0/. +*/ +/* + Created on : Jul 17, 2021, 12:29:13 PM + Author : Skylar Ittner +*/ + +select option { + color: var(--bs-dark); +} + +.alert { + color: var(--bs-dark); +} + +.theme-purple { + background-image: linear-gradient(90deg,#33b7e2,#5e62b0,#dc307c); +} + +.theme-green { + background-image: linear-gradient(90deg, #9ebd13 0%, #008552 100%); +} + +.theme-red { + background-image: linear-gradient(90deg, #d53369 0%, #daae51 100%); +} + +.theme-aqua { + background-image: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%); +} + +.theme-ocean { + background-image: linear-gradient(90deg, #1CB5E0 0%, #000851 100%); +} + +.theme-dusty { + background-image: linear-gradient(90deg, #fcff9e 0%, #c67700 100%); +} + +.theme-lilac { + background-image: linear-gradient(90deg, #efd5ff 0%, #515ada 100%); +} + +.theme-spring { + background-image: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%); +} + +.theme-shadow { + background-image: linear-gradient(90deg, #4b6cb7 0%, #182848 100%); +} \ No newline at end of file diff --git a/src/index.html b/src/index.html index d98f6b6..0074003 100644 --- a/src/index.html +++ b/src/index.html @@ -10,6 +10,7 @@ file, You can obtain one at http://mozilla.org/MPL/2.0/. +