Initial commit

This commit is contained in:
2026-06-24 23:47:55 -07:00
commit d134b480a0
297 changed files with 30726 additions and 0 deletions
+204
View File
@@ -0,0 +1,204 @@
@use "./variables" as *;
html {
.bg-success {
color: $white !important;
}
.bg-primary {
color: $white !important;
}
.bg-secondary {
color: $white !important;
}
.bg-warning {
color: $white !important;
}
.bg-secondary-gradient {
background: linear-gradient(287deg, rgb(var(--v-theme-primary)) .54%, #1bcaff 100.84%);
}
}
.border,
.v-divider {
border-color: rgba(var(--v-border-color)) !important;
}
.avtar-border {
border: 2px solid rgb(var(--v-theme-surface)) !important;
}
.subtext {
font-size: $font-size-root;
line-height: 1.75rem;
}
.v-dialog {
&.dialog-mw {
max-width: 800px;
}
}
.round-40 {
height: 40px;
width: 40px;
}
.round-56 {
height: 56px;
width: 56px;
}
.round-48 {
height: 48px;
width: 48px;
}
.round-30 {
height: 30px;
width: 30px;
}
.lh-0 {
line-height: 0 !important;
}
.lh-28 {
line-height: 28px !important;
}
.lh-32 {
line-height: 32px !important;
}
.space-p-96 {
padding: 96px 0 !important;
}
.ps-96 {
padding-inline-start: 96px !important;
}
.pt-96 {
padding-top: 96px !important;
}
.end-0 {
inset-inline-end: 0;
}
.top-0 {
top: 0;
}
.no-scrollbar {
height: calc(100vh - 350px);
}
.msg-chat-height {
height: calc(-500px + 100vh);
}
@media screen and (max-width:991px) {
.overflow-x-reposive {
overflow-x: scroll;
overflow-y: hidden;
}
.border-m-none {
border: 0 !important
}
}
@media screen and (max-height:767px) {
.msg-chat-height {
height: calc(-315px + 100vh);
}
}
.max-h-600 {
max-height: 600px;
height: calc(100vh - 100px);
}
.custom-hover-primary {
.iconify {
color: rgb(255, 255, 255) !important;
@media screen and (max-width:991px) {
color: rgba(var(--v-theme-textPrimary), 0.8) !important
}
}
&:hover {
background-color: rgba(var(--v-theme-lightprimary), 0.1);
.iconify {
@media screen and (max-width:991px) {
color: rgb(var(--v-theme-primary)) !important
}
}
}
}
.custom-hover-primary-white {
.iconify {
color: rgb(255, 255, 255) !important;
}
&:hover {
background-color: rgba(var(--v-theme-lightprimary), 0.1);
}
}
.no-icon {
.v-input__prepend,
.v-input__append {
display: none !important;
}
}
.bg-white {
background-color: rgb(255, 255, 255) !important;
}
.v-badge {
&.x-small-badge {
.v-badge__badge {
height: 6px !important;
width: 6px !important;
}
}
}
.one-line {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
}
.two-line {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.z-1 {
z-index: 1;
}
+150
View File
@@ -0,0 +1,150 @@
@use "sass:math";
@use "sass:map";
@use "sass:meta";
@use "vuetify/lib/styles/tools/functions" as *;
// Custom Variables
// colors
$white: #fff !default;
// cards
$card-title-size: 18px !default;
$body-font-family: "Overpass", sans-serif !default;
$border-radius-root: 10px;
$btn-font-weight: 400 !default;
$btn-letter-spacing: 0 !default;
// Global Shadow
$box-shadow:
rgba(145 158 171 / 30%) 0px 0px 2px 0px,
rgba(145 158 171 / 12%) 0px 12px 24px -4px;
// Global Radius as per breakeven point
@forward "vuetify/settings" with (
$color-pack: false !default,
// Global font size and border radius
$font-size-root: 1rem,
$border-radius-root: $border-radius-root,
$body-font-family: $body-font-family,
$heading-font-family: $body-font-family !default,
$button-height: 40px,
// 👉 Typography
$typography: (
"h1": (
"size": 2.25rem,
"weight": 600,
"line-height": 2.75rem,
"font-family": inherit,
),
"h2": (
"size": 1.875rem,
"weight": 500,
"line-height": 2.25rem,
"font-family": inherit,
),
"h3": (
"size": 1.5rem,
"weight": 500,
"line-height": 2rem,
"font-family": inherit,
),
"h4": (
"size": 1.3125rem,
"weight": 500,
"line-height": 1.6rem,
"font-family": inherit,
),
"h5": (
"size": 1.125rem,
"weight": 500,
"line-height": 1.6rem,
"font-family": inherit,
),
"h6": (
"size": 1rem,
"weight": 500,
"line-height": 1.2rem,
"font-family": inherit,
),
"subtitle-1": (
"size": 0.875rem,
"weight": 400,
"line-height": 1.1rem,
"font-family": inherit,
),
"subtitle-2": (
"size": 0.75rem,
"weight": 400,
"line-height": 1rem,
"font-family": inherit,
),
"body-1": (
"size": 0.875rem,
"weight": 400,
"font-family": inherit,
),
"body-2": (
"size": 0.75rem,
"weight": 400,
"font-family": inherit,
),
"button": (
"size": 0.875rem,
"weight": 500,
"font-family": inherit,
"text-transform": capitalize,
),
"caption": (
"size": 0.75rem,
"weight": 400,
"font-family": inherit,
),
"overline": (
"size": 0.75rem,
"weight": 500,
"font-family": inherit,
"text-transform": uppercase,
),
)
!default,
// 👉 Button
$button-border-radius: $border-radius-root !default,
$button-text-letter-spacing: 0 !default,
$button-text-transform: capitalize,
$button-elevation: (
"default": 0,
"hover": 4,
"active": 8,
)
!default,
// 👉 Tooltip
$tooltip-background-color: #212121 !default,
$tooltip-text-color: rgb(var(--v-theme-on-primary)) !default,
$tooltip-font-size: 0.75rem !default,
$tooltip-border-radius: 4px !default,
$tooltip-padding: 4px 8px !default,
// 👉 Rounded
$rounded: (
0: 0,
"sm": $border-radius-root * 0.5,
null: $border-radius-root,
"md": $border-radius-root * 1,
"lg": $border-radius-root * 2,
"xl": $border-radius-root * 6,
"pill": 9999px,
"circle": 50%,
),
// 👉 Card
// $card-color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity)) !default,
$card-elevation: 10 !default,
$card-title-line-height: 1.6 !default,
$card-text-padding: 24px !default,
$card-item-padding: 30px 30px 24px !default,
$card-actions-padding: 10px 24px 24px !default,
$card-subtitle-opacity: 1 !default // $card-border-color $border-color-root
);
+24
View File
@@ -0,0 +1,24 @@
.single-line-alert {
.v-alert__close,
.v-alert__prepend {
align-self: center !important;
}
}
@media (max-width: 500px) {
.single-line-alert {
display: flex;
flex-wrap: wrap;
.v-alert__append {
margin-inline-start: 0px;
}
.v-alert__close {
margin-left: auto;
}
.v-alert__content {
width: 100%;
margin-top: 5px;
}
}
}
@@ -0,0 +1,9 @@
.v-breadcrumbs{
.v-breadcrumbs-divider{
padding: 0 0 !important;
}
.v-breadcrumbs-item--link{
text-decoration: none;
}
}
+22
View File
@@ -0,0 +1,22 @@
.v-btn-group .v-btn {
height: inherit !important;
}
.v-btn-group {
border-color: rgb(var(--v-theme-borderColor)) !important;
}
.v-btn{
text-transform: capitalize;
letter-spacing: 0;
border-radius: 30px;
&.v-btn--variant-elevated{
box-shadow: none !important;
}
.v-btn--slim{
padding: 0 15px;
}
}
.v-btn--elevated:hover{
box-shadow: none;
}
+69
View File
@@ -0,0 +1,69 @@
// Outline Card
.v-card--variant-outlined {
border-color: rgba(var(--v-theme-borderColor)) !important;
}
.v-card--variant-elevated,
.v-card--variant-flat {
color: rgb(var(--v-theme-textPrimary));
}
.card-hover {
transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
&:hover {
scale: 1.01;
transition: all 0.1s ease-in 0s;
}
}
.v-card {
width: 100%;
overflow: visible;
.color-inherits {
color: inherit;
}
.feature-card {
.v-responsive__content {
height: 100%;
}
}
.v-timeline-divider__before,.v-timeline-divider__after {
background: rgba(var(--v-border-color), 1);
}
.v-card-text{
padding: 24px 24px;
}
.v-card-item{
padding: 24px 24px;
}
}
// Theme cards
.cardBordered {
.v-card {
box-shadow: none !important;
border: 1px solid rgb(var(--v-theme-borderColor));
}
}
.elevation-o-card{
.v-card-item{
padding: 0.625rem 1rem;
}
}
.card-title{
font-size: 18px;
font-weight: 500;
color:rgb(var(--v-theme-textPrimary));
}
.card-subtitle{
font-size: 14px;
font-weight: 400;
color:rgb(var(--v-theme-textSecondary));
}
.dark-card-title{
font-size: 18px;
font-weight: 500;
color:rgb(var(--v-theme-textPrimary));
}
+3
View File
@@ -0,0 +1,3 @@
.theme-carousel .v-carousel__progress {
position: absolute;
}
+3
View File
@@ -0,0 +1,3 @@
.v-pagination__item--is-active .v-btn__overlay {
opacity: 0.15 !important;
}
+99
View File
@@ -0,0 +1,99 @@
.v-table {
&.datatabels {
&.productlist {
.v-data-table-header__content span {
color: rgb(var(--v-theme-textPrimary));
}
.v-toolbar {
.v-input__control {
max-width: 300px;
}
.v-toolbar__content {
height: auto !important;
}
}
thead tr th:first-child {
padding-left: 0px !important;
}
tbody tr td:first-child {
padding-left: 0px !important;
}
tbody tr td{
padding: 15px;
}
}
.v-selection-control--dirty .v-selection-control__input>.v-icon {
color: rgb(var(--v-theme-primary));
}
}
}
@media screen and (max-width:1368px) {
.v-table {
&.datatabels {
&.productlist {
.v-data-table-header__content span {
color: rgb(var(--v-theme-textPrimary));
}
table {
tbody {
tr {
td {
padding: 14px 5px !important;
&:first-child {
padding-left: 15px !important;
}
}
}
}
thead {
tr {
th {
padding: 14px 5px !important;
&:first-child {
padding-left: 15px !important;
}
}
}
}
}
}
}
}
}
.v-pagination {
.v-pagination__list {
.v-pagination__item--is-active {
.v-btn {
.v-btn__overlay {
opacity: 0;
}
background-color: rgb(var(--v-theme-grey100)) !important;
}
}
}
}
@@ -0,0 +1,6 @@
.v-expansion-panel-title__overlay{
background: rgba(var(--v-theme-primary));
}
.v-expansion-panel:not(:first-child)::after {
border-color: transparent !important;
}
+29
View File
@@ -0,0 +1,29 @@
@use "../variables" as *;
.v-field--variant-outlined .v-field__outline__start.v-locale--is-ltr,
.v-locale--is-ltr .v-field--variant-outlined .v-field__outline__start {
border-radius: $border-radius-root 0 0 $border-radius-root;
}
.v-field--variant-outlined .v-field__outline__end.v-locale--is-ltr,
.v-locale--is-ltr .v-field--variant-outlined .v-field__outline__end {
border-radius: 0 $border-radius-root $border-radius-root 0;
}
.v-field {
font-size: 14px;
color: rgba(var(--v-theme-textPrimary));
}
// select outlined
.v-field--variant-outlined .v-field__outline__start,
.v-field--variant-outlined .v-field__outline__notch::before,
.v-field--variant-outlined .v-field__outline__notch::after,
.v-field--variant-outlined .v-field__outline__end {
opacity: 1;
}
.v-field--active .v-label.v-field-label{
color: rgb(var(--v-theme-textPrimary));
}
+35
View File
@@ -0,0 +1,35 @@
// variant
.v-input--density-default,
.v-field--variant-solo,
.v-field--variant-filled {
--v-input-control-height: 51px;
--v-input-padding-top: 14px;
}
// comfortable
.v-input--density-comfortable {
--v-input-control-height: 44px;
}
// compact
.v-input--density-compact {
--v-input-padding-top: 10px;
}
.v-label {
font-size: 14px;
opacity: 0.7;
font-weight: 500 !important;
}
.v-switch .v-label,
.v-checkbox .v-label {
opacity: 1;
}
.v-text-field__suffix {
opacity: 1;
padding-left: 20px;
}
.shadow-none .v-field--variant-solo {
box-shadow: none !important;
}
+18
View File
@@ -0,0 +1,18 @@
.v-time-picker-clock{
background: rgb(var(--v-theme-grey100)) ;
}
.v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default{
border: 0 !important;
}
.v-stepper-header,.v-stepper.v-sheet{
box-shadow: none !important;
}
.v-time-picker-controls__time__btn.v-btn--density-default.v-btn {
width: 55px !important;
height: 55px !important;
font-size: 30px;
}
.v-time-picker-controls__time__separator {
font-size: 36px !important;
}
+34
View File
@@ -0,0 +1,34 @@
.v-list.theme-list {
.v-list-item:hover > .v-list-item__overlay {
opacity: 1;
z-index: 1;
}
.v-list-item--variant-text {
.v-list-item__overlay {
background: rgb(var(--v-theme-hoverColor));
}
}
.v-list-item__prepend,
.v-list-item__content {
z-index: 2;
}
.v-list-item__overlay {
background-color: rgb(var(--v-theme-hoverColor));
}
.v-list-item.v-list-item--active{
.v-list-item__overlay{
opacity: 1;
}
}
.mail-items{
min-height: 40px !important;
margin-bottom: 5px !important;
}
}
.v-list-item-title{
font-size: 14px;
}
@@ -0,0 +1,3 @@
.v-navigation-drawer__scrim.fade-transition-leave-to {
display: none;
}
@@ -0,0 +1,6 @@
// For checkbox & radios
.v-selection-control__input > .v-icon.mdi-checkbox-blank-outline,
.v-selection-control__input > .v-icon.mdi-radiobox-blank {
color: rgb(var(--v-theme-inputBorder));
opacity: 1;
}
+33
View File
@@ -0,0 +1,33 @@
@use "../variables" as *;
.elevation-9 {
box-shadow: rgb(0 0 0 / 5%) 0px 9px 17.5px !important;
}
.elevation-10 {
box-shadow: $box-shadow !important;
}
.elevation-1 {
box-shadow:0px 12px 30px -2px rgba(58,75,116,0.14) !important
}
.elevation-2 {
box-shadow:0px 24px 24px -12px rgba(0, 0, 0, .05) !important
}
.elevation-3 {
box-shadow: rgba(145,158,171,0.2) 0px 0px 2px 0px, rgba(145,158,171,0.12) 0px 12px 24px -4px !important;
}
.elevation-4{
box-shadow: 0px 12px 12px -6px rgba(0,0,0,0.15) !important;
}
.elevation-5
{
box-shadow: 1px 0 7px rgba(0, 0, 0, .05)!important;
}
.primary-shadow {
box-shadow: rgba(var(--v-theme-primary), 0.30) 0px 12px 14px 0px;
&:hover {
box-shadow: none;
}
}
+8
View File
@@ -0,0 +1,8 @@
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
background: rgb(var(--v-theme-primary)) !important;
}
.v-stepper-item__avatar.v-avatar {
background: rgba(var(--v-theme-primary), var(--v-medium-emphasis-opacity)) !important;
color: rgb(var(--v-theme-on-primary)) !important;
}
+48
View File
@@ -0,0 +1,48 @@
.v-selection-control.v-selection-control--density-default {
.v-switch__track,
.v-switch__thumb {
background-color: rgb(var(--v-theme-grey200));
}
&.v-selection-control--dirty {
.v-selection-control__wrapper.text-primary {
.v-switch__track {
background-color: rgba(var(--v-theme-primary), 0.6);
}
.v-switch__thumb {
background-color: rgb(var(--v-theme-primary));
}
}
.v-selection-control__wrapper.text-secondary {
.v-switch__track {
background-color: rgba(var(--v-theme-secondary), 0.6);
}
.v-switch__thumb {
background-color: rgb(var(--v-theme-secondary));
}
}
.v-selection-control__wrapper.text-warning {
.v-switch__track {
background-color: rgba(var(--v-theme-warning), 0.6);
}
.v-switch__thumb {
background-color: rgb(var(--v-theme-warning));
}
}
.v-selection-control__wrapper.text-error {
.v-switch__track {
background-color: rgba(var(--v-theme-error), 0.6);
}
.v-switch__thumb {
background-color: rgb(var(--v-theme-error));
}
}
.v-selection-control__wrapper.text-success {
.v-switch__track {
background-color: rgba(var(--v-theme-success), 0.6);
}
.v-switch__thumb {
background-color: rgb(var(--v-theme-success));
}
}
}
}
+99
View File
@@ -0,0 +1,99 @@
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th,
.v-table .v-table__wrapper > table > thead > tr:last-child > th {
border-bottom: thin solid rgba(var(--v-border-color)) !important;
}
.v-data-table{
th.v-data-table__th{
font-size:16px;
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
}
td.v-data-table__td{
font-size: 14px;
text-wrap: nowrap;
}
.v-data-table-footer{
padding: 15px 8px;
}
.v-data-table-header__sort-badge{
background-color:rgb(var(--v-theme-borderColor)) !important;
}
.tdhead{
font-size:16px;
}
}
@media screen and (max-width:767px) {
.v-data-table-footer{
justify-content: center;
}
}
.v-table {
&.ticket-table {
table {
thead {
th {
font-weight: 600 !important;
}
}
tbody {
tr {
td {
padding: 16px 16px !important;
}
}
}
}
}
&.invoice-table {
.v-table__wrapper {
table {
thead {
th {
font-weight: 600 !important;
padding: 0px 24px !important;
&:first-child {
padding-left: 0 !important;
}
&:last-child {
padding-right: 0 !important;
}
}
}
tbody {
tr {
td {
padding: 8px 24px !important;
&:first-child {
padding-left: 0 !important;
}
&:last-child {
padding-right: 0 !important;
}
}
}
}
}
}
}
}
+14
View File
@@ -0,0 +1,14 @@
@use "../variables" as *;
.theme-tab {
&.v-tabs {
.v-tab {
border-radius: $border-radius-root !important;
min-width: auto !important;
&.v-slide-group-item--active {
background: rgb(var(--v-theme-primary));
}
}
}
}
+13
View File
@@ -0,0 +1,13 @@
.v-text-field input {
font-size: 0.875rem;
}
.v-field__outline {
color: rgb(var(--v-theme-inputBorder));
--v-field-border-opacity: 1 !important;
}
.input {
.v-field--variant-outlined {
background-color: rgba(0, 0, 0, 0.025);
}
}
+7
View File
@@ -0,0 +1,7 @@
.v-textarea input {
font-size: 0.875rem;
font-weight: 500;
&::placeholder {
color: rgba(0, 0, 0, 0.38);
}
}
+597
View File
@@ -0,0 +1,597 @@
@use "../variables" as *;
@keyframes slideup {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(0px, -100%, 0px);
}
}
.animateDown {
animation: 35s linear 0s infinite normal none running slideDown;
}
@keyframes slideDown {
0% {
transform: translate3d(0, -100%, 0);
}
100% {
transform: translate3d(0px, 0, 0px);
}
}
// OfferBar
.offerbar {
position: relative;
top: 0;
width: 100%;
z-index: 999;
.white-btn {
background-color: rgba(var(--v-theme-surface), 0.15);
font-weight: 700;
height: 25px;
}
&:before {
background-repeat: no-repeat;
content: '';
position: absolute;
background-image: url('@/assets/images/front-pages/background/left-shape.png');
bottom: 0;
height: 40px;
left: 0;
width: 325px;
}
&:after {
background-repeat: no-repeat;
content: '';
position: absolute;
background-image: url('@/assets/images/front-pages/background/right-shape.png');
bottom: 0;
right: 17%;
width: 325px;
top: 0;
background-size: contain;
}
}
//
// frameworks
//
.slider-group {
animation: slide 45s linear infinite;
}
.marquee1-group {
animation: marquee 45s linear infinite;
}
.marquee2-group {
animation: marquee2 45s linear infinite;
}
@keyframes slide {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(-100%, 0, 0);
}
}
@keyframes marquee {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(-2086px, 0, 0);
}
}
@keyframes marquee2 {
0% {
transform: translate3d(-2086px, 0, 0)
}
100% {
transform: translate3d(0, 0, 0)
}
}
.front-wraper {
overflow: hidden;
.underline-link {
text-underline-offset: 4px;
}
.underline-link-6 {
text-underline-offset: 6px;
text-decoration-thickness: 2px;
}
.main-banner {
min-width: 1300px;
overflow: hidden;
max-height: 700px;
height: calc(100vh - 100px);
img {
max-width: 100%;
height: auto;
}
}
.team {
&:hover {
.intro {
opacity: 1;
}
}
.intro {
opacity: 0;
bottom: 16px;
inset-inline-start: .75rem;
inset-inline-end: .75rem;
transition: 0.5s;
}
}
// Revenue Products
.feature-tabs {
.v-slide-group__content {
gap: 16px;
padding-bottom: 56px;
}
.v-btn {
background-color: rgba(var(--v-theme-surface));
padding: 16px 24px;
border-radius: 12px !important;
font-size: 16px;
box-shadow: 0px 24px 24px -12px rgba(0, 0, 0, .05);
}
.v-tab--selected {
background-color: rgba(var(--v-theme-primary));
box-shadow: 0px 24px 24px -12px rgba(99, 91, 255, .15);
.v-btn__content {
color: #fff;
.v-tab__slider {
display: none;
}
}
}
}
.v-container {
&.max-width-1218 {
max-width: 1218px !important;
}
}
.v-container {
&.max-width-800 {
max-width: 800px !important;
}
&.max-width-1000 {
max-width: 1000px !important;
}
}
.max-w-600 {
max-width: 600px !important;
}
.template {
.left-widget {
position: absolute;
top: 96px;
inset-inline-start: -40px;
max-height: 400px;
width: auto;
}
.right-widget {
position: absolute;
top: 96px;
inset-inline-end: -40px;
max-height: 400px;
width: auto;
}
}
.feature-tabs {
.v-tab__slider {
top: 0;
bottom: unset;
}
&.v-tabs--density-default {
--v-tabs-height: auto;
}
}
.feature-tabs-expansion {
.v-expansion-panel-text__wrapper {
padding: 0px 0px 16px;
}
.v-expansion-panel-title {
padding: 16px 0px;
}
.v-expansion-panel {
background-color: transparent !important;
}
.v-expansion-panel--active:not(:first-child),
.v-expansion-panel--active+.v-expansion-panel {
margin-top: 0;
}
}
.leader-slider {
.carousel__slide {
padding: 0 15px;
}
.carousel__viewport {
margin: 0 -15px;
padding-bottom: 30px;
}
.carousel__prev,
.carousel__next {
top: -85px;
width: 100%;
justify-content: end;
margin: 0;
transform: none;
display: flex;
justify-content: center
}
.carousel__next {
height: 48px;
width: 48px;
border-radius: 50%;
background: rgb(var(--v-theme-lightprimary));
}
.carousel__prev {
height: 48px;
width: 48px;
border-radius: 50%;
background: rgb(var(--v-theme-lightprimary));
right: 65px;
left: unset;
}
}
.our-template {
.carousel__slide {
padding: 0 15px 40px;
}
.carousel__viewport {
margin: 0 -106px;
}
}
.testimonials {
.carousel__prev,
.carousel__next {
width: 100%;
justify-content: end;
margin: 0;
transform: translateY(75px);
display: flex;
justify-content: center;
bottom: 0;
}
.carousel__next {
height: 32px;
width: 32px;
border-radius: 50%;
background: rgb(var(--v-theme-background));
left: -60%;
}
.carousel__prev {
height: 32px;
width: 32px;
border-radius: 50%;
background: rgb(var(--v-theme-background));
right: 65px;
left: -74%;
}
.carousel {
padding-bottom: 25px;
}
.slide-counter {
position: relative;
bottom: -4px;
left: 50px;
z-index: 2;
font-size: 15px;
opacity: 0.7;
}
}
.social-icon {
svg {
path {
fill: rgb(255, 255, 255);
&:hover {
fill: rgb(var(--v-theme-primary));
}
}
}
}
.package {
.v-list-item {
min-height: 35px !important;
}
}
.lp-faq {
.v-expansion-panel-title__icon {
.v-icon {
font-size: 20px;
opacity: 0.5
}
}
.v-expansion-panels:not(.v-expansion-panels--variant-accordion)> :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
border-bottom-left-radius: 8px !important;
border-bottom-right-radius: 8px !important;
}
.v-expansion-panels:not(.v-expansion-panels--variant-accordion)> :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
border-top-left-radius: 8px !important;
border-top-right-radius: 8px !important;
}
.v-expansion-panels:not(.v-expansion-panels--variant-accordion)> :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
border-bottom-left-radius: 8px !important;
border-bottom-right-radius: 8px !important;
}
.v-expansion-panel--active:not(:first-child),
.v-expansion-panel--active+.v-expansion-panel {
margin-top: 0px !important;
}
}
.animted-img {
position: absolute;
z-index: 9;
top: 0%;
animation: mover 5s infinite alternate;
}
.animted-img-2 {
position: absolute;
z-index: 9;
top: -35px;
inset-inline-end: 15px;
animation: mover 5s infinite alternate;
}
@keyframes mover {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-10px);
}
}
.carousel__pagination {
.carousel__pagination-button {
padding: 6px;
&::after {
height: 8px;
width: 8px;
border-radius: 50%;
background-color: transparent;
background-color: rgb(var(--v-theme-textPrimary));
opacity: 0.25;
}
&:hover {
&::after {
background-color: #000;
opacity: 1;
}
}
}
.carousel__pagination-button--active {
&::after {
background-color: #000;
opacity: 1;
}
}
}
.carousel {
z-index: 2;
}
}
.v-btn--size-default {
&.nav-links {
font-size: $font-size-root !important;
.v-btn__overlay {
display: none;
}
&:hover {
color: rgb(var(--v-theme-primary)) !important;
}
}
}
.light-primary {
background-color: rgb(var(--v-theme-primary), 0.1);
}
.announce-close {
position: absolute;
right: 15px;
}
.text-align-start{
text-align: start;
}
@media screen and (max-width:1199px) {
.ps-96 {
padding-inline-start: 60px !important;
}
.space-p-96 {
padding: 55px 0 !important;
}
.pt-96 {
padding-top: 55px !important;
}
.offerbar {
&:after {
background-image: none;
}
}
.offerbar:after,
.offerbar:before {
display: none;
}
}
@media screen and (max-width:1024px) {
.front-wraper .testimonials .slide-counter {
left: 67px;
}
.space-p-96 {
padding: 40px 0 !important;
}
.pt-96 {
padding-top: 40px !important;
}
.front-wraper .bg-collection {
background-image: none;
}
.front-wraper .our-template .carousel__viewport {
margin: 0 0px;
}
.ps-96 {
padding-inline-start: 20px !important;
padding-inline-end: 20px !important;
}
}
@media screen and (max-width:991px) {
.text-align-start{
text-align: center;
}
}
@media screen and (max-width:767px) {
.technology {
.round-54 {
height: 45px;
width: 45px;
img {
height: 22px;
}
}
}
.front-wraper {
.display-2 {
font-size: 32px;
line-height: normal;
}
.display-1 {
font-size: 32px;
line-height: normal;
}
}
.front-wraper .leader-slider .carousel__viewport {
margin: 0 0px;
}
.announce-close {
bottom: 8px;
}
.text-48 {
font-size: 30px !important;
line-height: 40px !important;
}
.text-56 {
font-size: 35px !important;
line-height: 40px !important;
}
.team {
.intro {
opacity: 1 !important;
}
}
}
+104
View File
@@ -0,0 +1,104 @@
@use "../variables" as *;
.front-lp-header {
.v-toolbar{
background: rgb(var(--v-theme-surface));
}
&.v-app-bar .v-toolbar__content {
padding: 0;
}
.v-toolbar__content {
background: transparent !important;
box-shadow: none !important;
}
&.v-toolbar {
background: transparent !important;
top: 0 !important;
}
.v-toolbar {
background: transparent !important;
}
&.sticky-header {
position: fixed !important;
top: 0 !important;
transition: 0.5s;
background-color: rgba(var(--v-theme-surface)) !important;
box-shadow: 0 4px 29px -11px #3a4b7424 !important;
}
}
//
// mega menu
//
.white-btn{
background-color: #769CFF;
}
.front_wrapper {
&.v-menu .v-overlay__content {
margin: 0 auto;
left: 0 !important;
right: 0;
}
.megamenu {
&::before {
content: '';
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 96%;
background-color: rgba(55, 114, 255, 0.2);
border-radius: 7px;
opacity: 0;
}
.v-btn {
top: 50%;
transform: translateY(-50%);
z-index: 1;
left: 0;
right: 0;
min-width: 100px;
opacity: 0;
font-size: 13px;
}
&:hover {
&::before,
.v-btn {
opacity: 1;
}
}
}
}
.lp-drawer {
&.v-navigation-drawer {
top: 0 !important;
height: 100% !important;
z-index: 1007 !important;
}
}
.lp-mobile-sidebar {
.v-list {
.v-list-item__content {
overflow: inherit;
}
}
.v-list-group__items .v-list-item {
padding-inline-start: 25px !important;
}
}
.v-btn--size-default {
&.nav-links {
font-size: $font-size-root !important;
}
}
+40
View File
@@ -0,0 +1,40 @@
html {
overflow-y: auto;
}
.v-main{
background:rgb(var(--v-theme-background)) !important; ;
}
@media (max-width: 1279px) {
.v-main {
margin: 0 10px;
}
}
.cursor-pointer {
cursor: pointer;
}
.page-wrapper {
min-height: calc(100vh - 100px);
padding: 24px;
// border-radius: $border-radius-root;
@media screen and (max-width: 767px) {
padding: 20px 10px;
}
}
.maxWidth {
max-width: 1200px;
margin: 0 auto;
}
.fixed-width {
max-width: 1300px;
}
.right-pos-img {
position: absolute;
right: 0;
top: 0;
height: 100%;
}
+93
View File
@@ -0,0 +1,93 @@
.v-btn.customizer-btn {
position: fixed;
bottom: 30px;
right: 30px;
border-radius: 50%;
// .icon-tabler-settings {
// animation: progress-circular-rotate 1.4s linear infinite;
// transform-origin: center center;
// transition: all 0.2s ease-in-out;
// }
}
.btn-group-custom {
&.v-btn-group {
height: 66px !important;
overflow: unset !important;
.v-btn {
height: 66px !important;
padding: 0 20px;
border: 1px solid rgb(var(--v-theme-borderColor), 0.7) !important;
transition: all 0.1s ease-in 0s;
&:hover {
transform: scale(1.05);
}
&.text-primary {
.v-btn__overlay {
background: transparent !important;
}
.icon {
color: rgb(var(--v-theme-primary)) !important;
fill: rgb(var(--v-theme-primary), 0.2);
}
color: rgb(var(--v-theme-primary)) !important;
}
}
}
}
.hover-btns {
transition: all 0.1s ease-in 0s;
&:hover {
transform: scale(1.05);
}
}
// all theme colors
.v-avatar.themeBlue,
.v-avatar.themeDarkBlue {
background: #1e88e5;
}
.v-avatar.themeAqua,
.v-avatar.themeDarkAqua {
background: #0074ba;
}
.v-avatar.themePurple,
.v-avatar.themeDarkPurple {
background: #763ebd;
}
.v-avatar.themeGreen,
.v-avatar.themeDarkGreen {
background: #0a7ea4;
}
.v-avatar.themeCyan,
.v-avatar.themeDarkCyan {
background: #01c0c8;
}
.v-avatar.themeOrange,
.v-avatar.themeDarkOrange {
background: #fa896b;
}
.DARK_BLUE_THEME, .DARK_AQUA_THEME, .DARK_ORANGE_THEME, .DARK_PURPLE_THEME, .DARK_GREEN_THEME, .DARK_CYAN_THEME {
.togglethemeBlue {
display: block !important;
}
.togglethemeDarkBlue {
display: none !important;
}
}
.BLUE_THEME, .AQUA_THEME, .ORANGE_THEME, .PURPLE_THEME, .GREEN_THEME, .CYAN_THEME {
.togglethemeDarkBlue {
display: block !important;
}
.togglethemeBlue {
display: none !important;
}
}
+81
View File
@@ -0,0 +1,81 @@
// theme : dark
div[class*='v-theme--DARK_'] {
.smallCap {
color: rgb(var(--v-theme-textSecondary));
}
.elevation-10 {
box-shadow: rgb(145 158 171 / 30%) 0px 0px 2px 0px, rgb(145 158 171 / 2%) 0px 12px 24px -4px !important;
}
.v-field__outline{
--v-field-border-opacity: 0.38 !important;
}
.front-wraper{
.bg-background{
background-color: rgb(var(--v-theme-hoverColor)) !important;
}
.front-dark{
&.bg-textPrimary{
background-color: rgb(var(--v-theme-surface)) !important;
}
}
.bg-textPrimary{
background-color: rgb(var(--v-theme-textSecondary)) !important;
}
}
#vector-map .dxm-layers path {
fill: #7C8FAC !important;
}
.svgMap-map-wrapper {
.svgMap-country {
stroke: #878585;
fill: #1A2537 !important;
&#svgMap-map-country-IN {
fill: rgb(var(--v-theme-secondary)) !important;
}
&#svgMap-map-country-AF {
fill: rgb(var(--v-theme-purple)) !important;
}
&#svgMap-map-country-US {
fill: rgb(var(--v-theme-primary)) !important;
}
}
.svgMap-map-controls-zoom {
background: #c9d6de !important;
}
.svgMap-control-button{
background-color: rgb(var(--v-theme-textSecondary)) !important;
}
}
.dark-card-title{
color:rgb(var(--v-theme-surface));
}
.fc{
.fc-button-primary:not(:disabled).fc-button-active {
background-color: rgb(var(--v-theme-grey100));
}
.fc-button-group {
>.fc-button {
&:hover,&:focus{
background-color: rgba(var(--v-theme-grey100));
color: #fff;
.fc-icon{
color: #fff;
}
}
}
}
}
}
+231
View File
@@ -0,0 +1,231 @@
@use "../variables" as *;
.horizontalLayout {
.v-main {
margin: 0 16px !important;
@media screen and (max-width: 767px) {
margin: 0 10px !important;
}
}
}
.horizontal-header {
&.v-app-bar .v-toolbar__content {
padding: 0;
display: flex;
justify-content: space-between;
}
.maxWidth {
@media screen and (max-width: 1199px) {
padding: 0 8px !important;
}
}
}
.ddMenu {
&.ddLevel-1 {
.navItem {
.navItemLink {
.dot {
height: 6px;
width: 6px;
background-color: rgb(var(--v-theme-textSecondary));
border-radius: 50%;
margin-inline-end: 8px !important;
}
}
&:hover {
.dot {
background-color: rgb(var(--v-theme-secondary));
}
}
}
}
&.ddLevel-2 {
.navItem {
.navItemLink {
.dot {
height: 6px;
width: 6px;
background-color: rgb(var(--v-theme-textSecondary));
border-radius: 50%;
margin-inline-end: 8px !important;
}
}
&:hover {
.dot {
background-color: rgb(var(--v-theme-secondary));
}
}
}
}
}
.horizontalMenu {
.v-toolbar__content {
max-width: 1270px;
margin: 0 auto;
}
.navItem:has(.ddMenu.ddLevel-1 li a.router-link-active) {
background-color: rgb(var(--v-theme-secondary)) !important;
border-radius: 9999px;
.navcollapse {
color: rgba(255, 255, 255);
}
}
}
.mobile-menu {
.v-navigation-drawer {
margin-top: -70px !important;
height: 100vh !important;
z-index: 2000 !important;
}
}
@media (min-width: 960px) {
.horizontalMenu {
margin-top: 65px;
margin-bottom: -70px;
.maxWidth {
.horizontal-navbar {
max-width: 1160px;
}
}
}
.horizontal-navbar {
padding: 16px 0;
margin: 0px auto;
align-items: center;
display: flex;
z-index: 11;
font-size: 0.875rem;
position: relative;
ul {
padding: 0px;
margin: 0px;
}
.ddMenu {
li {
a {
color: rgb(var(--v-theme-textPrimary)) !important;
}
}
}
li {
list-style: none;
a {
text-decoration: none;
display: flex;
align-items: center;
padding: 10px 13px;
height: 40px;
.navIcon {
margin-right: 10px;
display: flex;
}
.ddIcon {
margin-top: 2px;
}
&.router-link-exact-active {
background-color: transparent;
color: rgba(var(--v-theme-secondary)) !important;
.dot {
background-color: rgb(var(--v-theme-secondary)) !important;
}
}
}
}
.navItem {
position: relative;
.single-link {
&:hover {
color: rgb(var(--v-theme-secondary)) !important;
}
}
.ddMenu {
.navItem {
.navcollapse {
&:hover {
color: rgb(var(--v-theme-secondary)) !important;
}
}
}
}
}
.ddMenu {
position: absolute;
width: 230px;
display: none;
top: 40px;
padding: 10px;
z-index: 1;
background-color: rgb(var(--v-theme-surface));
box-shadow: $box-shadow;
border-radius: $border-radius-root;
li {
margin-bottom: 3px;
}
}
.ddLevel-2,
.ddLevel-3 {
top: -5px;
left: 212px;
}
.navItem:hover {
>.ddMenu {
display: block;
}
}
>li:hover {
background-color: rgb(var(--v-theme-lightprimary));
border-radius: 9999px;
>.navItemLink {
color: rgb(var(--v-theme-secondary));
opacity: 1;
}
}
.router-link-exact-active {
color: rgb(var(--v-theme-secondary));
font-weight: 500;
background-color: rgb(var(--v-theme-lightprimary));
border-radius: $border-radius-root;
}
}
}
+109
View File
@@ -0,0 +1,109 @@
.h-100 {
height: 100%;
}
.w-100 {
width: 100%;
}
.h-100vh {
height: 100vh;
}
.gap-2 {
gap: 8px;
}
.gap-3 {
gap: 16px;
}
.gap-4 {
gap: 24px;
}
.text-white {
color: rgb(255, 255, 255) !important;
}
// border
.border-bottom {
border-bottom: 1px solid rgba(0, 0, 0, .05);
}
.opacity-1 {
opacity: 1 !important;
}
.opacity-50 {
opacity: 0.5;
}
.z-auto.v-card {
z-index: auto;
}
.obj-cover {
object-fit: cover;
}
.cursor-move {
cursor: move;
}
body {
cursor: default;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="file"]):not([type="range"]):not([type="color"]),
textarea,
[contenteditable="true"] {
cursor: text;
}
//Date time picker
input[type="date"],
input[type="time"] {
display: block !important;
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
display: block !important;
}
.ProseMirror {
min-height: 150px;
}
.upload-btn-wrapper {
width: 150px;
height: 140px;
margin: 0 auto;
box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075);
input[type=file] {
position: absolute;
left: 0;
top: 0;
opacity: 0;
height: 100%;
width: 100%;
}
}
.bg-transparent {
background-color: transparent !important;
}
.bg-dark{
background-color: rgba(0, 0, 0, .08);
}
.bg-white-opacity{
background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width:1368px) and (min-width:1200px) {
.space-20 {
padding: 30px 20px !important;
}
}
+341
View File
@@ -0,0 +1,341 @@
.v-locale--is-rtl {
.customizer-btn {
left: 30px;
right: unset;
}
.horizontal-navbar .icon-box {
margin-left: 12px;
}
.bg-img-1 {
position: absolute;
bottom: 0;
left: 0;
right: unset !important;
transform: scaleX(-1);
}
.ml-1 {
margin-left: unset !important;
margin-right: 4px;
}
.ml-2 {
margin-left: unset !important;
margin-right: 8px;
}
.mr-1 {
margin-right: unset !important;
margin-left: 4px;
}
.mr-2 {
margin-right: unset !important;
margin-left: 8px;
}
.mr-sm-2 {
margin-right: unset !important;
margin-left: 8px;
}
.mr-3 {
margin-right: unset !important;
margin-left: 12px !important;
}
.mr-4 {
margin-right: unset !important;
margin-left: 16px !important;
}
.ml-3 {
margin-left: unset !important;
margin-right: 12px !important;
}
.mr-auto {
margin-left: auto !important;
margin-right: unset !important;
}
.ml-4 {
margin-left: unset !important;
margin-right: 16px;
}
.ml-sm-4 {
margin-left: unset !important;
margin-right: 16px;
}
.ml-md-4 {
margin-left: unset !important;
margin-right: 16px;
}
.ml-sm-3 {
margin-left: unset !important;
margin-right: 12px;
}
.ml-5 {
margin-left: unset !important;
margin-right: 20px;
}
.ml-6 {
margin-left: unset !important;
margin-right: 24px;
}
.ml-10 {
margin-left: unset !important;
margin-right: 40px;
}
.pl-1 {
padding-left: unset !important;
padding-right: 4px !important;
}
.pl-2 {
padding-left: unset !important;
padding-right: 8px !important;
}
.pr-2 {
padding-left: 8px !important;
}
.pr-4 {
padding-left: 16px !important;
padding-right: unset !important;
}
.pl-4 {
padding-left: unset !important;
padding-right: 16px !important;
}
.right-pos-img {
right: unset;
left: 0;
transform: scaleX(-1);
top: 0;
}
.badg-dotDetail {
left: 0;
right: -8px;
}
.text-right {
text-align: left !important;
}
.text-sm-right,
.text-md-right {
text-align: left !important;
}
.text-sm-left {
text-align: right !important;
}
.text-left {
text-align: right !important;
}
.ml-auto,
.ml-sm-auto {
margin-left: unset !important;
margin-right: auto !important;
}
.justify-start {
justify-content: flex-end !important;
}
.vertical-table .v-table>.v-table__wrapper>table>tbody>tr>th {
border-left: thin solid rgba(var(--v-border-color), 1) !important;
}
.authentication .auth-header {
left: unset;
right: 0;
}
.horizontal-navbar li a {
padding: 10px 13px;
}
.horizontal-navbar {
li {
margin-right: 0;
margin-left: 15px;
}
}
// &.v-menu .v-overlay__content,
// &.search_popup .v-overlay__content,
// &.language_dropdown .v-overlay__content,
// &.notification_popup .v-overlay__content,
// &.profile_popup .v-overlay__content {
// left: inherit;
// }
.related-Product {
.carousel__prev.navarrow {
top: 0;
right: unset !important;
left: 0;
}
.carousel__next.navarrow {
top: 0;
right: unset !important;
left: 45px;
}
}
//RTL mode minisidebar hover to active scrollbar
.ps--active-y>.ps__rail-y {
right: unset !important;
left: 0;
}
//RTL mode sidebar scrollbar on right side
.left-customizer {
.ps__rail-y {
right: 0 !important;
}
}
.horizontal-navbar .ddMenu {
padding: 10px 15px 10px 0px;
}
.v-list-group__items {
.iconClass {
position: relative;
left: unset;
right: -2px;
}
}
@media (min-width: 960px) {
.horizontal-navbar .ddLevel-2,
.horizontal-navbar .ddLevel-3 {
top: -5px;
right: 212px;
}
.horizontal-navbar li a .navIcon {
margin-right: 0;
margin-left: 10px;
}
}
.leftSidebar .profile-name h5 {
direction: ltr;
}
.horizontal-navbar {
.ddMenu {
.navItemLink {
padding-right: 15px;
}
}
}
@media screen and (max-width:1279px) {
.mini-sidebar {
.v-navigation-drawer.v-navigation-drawer--right {
width: 270px !important;
}
.v-navigation-drawer.v-navigation-drawer--left {
width: 320px !important;
}
}
}
.rtlImg {
transform: scaleX(-1);
}
.marquee1-group {
animation: marquee-rtl 45s linear infinite;
}
.marquee2-group {
animation: marquee2-rtl 45s linear infinite;
}
@keyframes marquee-rtl {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(2086px, 0, 0);
}
}
@keyframes marquee2-rtl {
0% {
transform: translate3d(2086px, 0, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
.front-wraper {
.testimonials {
.slide-counter {
left: -50px;
}
.carousel__prev {
right: -74%;
left: unset;
.rtlnav {
transform: scaleX(-1);
}
}
.carousel__next {
right: -60%;
left: unset;
.rtlnav {
transform: scaleX(-1);
}
}
}
}
//For Rtl Chart
.rtl-me-n7 {
margin-inline-start: -28px !important;
margin-inline-end: unset !important;
}
.profile-img::before {
left: unset;
right: 14px;
}
}
+374
View File
@@ -0,0 +1,374 @@
@use "../variables" as *;
/*This is for the logo*/
.leftSidebar {
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .03), 0 0 1px 0 rgba(0, 0, 0, .1);
.logo {
padding-left: 7px;
}
.mini-icon {
display: none;
}
.mini-text {
display: block;
}
.profile {
background: url("@/assets/images/backgrounds/user-info.jpg") no-repeat;
}
.profile-name {
background: rgba(0, 0, 0, 0.5);
margin-top: -6px;
height: 35px;
h5 {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
}
.v-list--density-default .v-list-subheader {
padding-inline-start: 0 !important;
}
}
.verticalLayout {
.logo {
width: 250px;
@media screen and (max-width:1024px) {
width: auto;
}
}
}
/*This is for the Vertical sidebar*/
.scrollnavbar {
height: 100%;
.userbottom {
position: fixed;
bottom: 0px;
width: 100%;
}
.smallCap {
padding: 3px 12px 12px 0px !important;
font-size: 0.875rem;
font-weight: 500;
margin-top: 24px;
color: rgb(var(--v-theme-textPrimary));
&:first-child {
margin-top: 0 !important;
}
}
/*General Menu css*/
.v-list-group__items .v-list-item,
.v-list-item {
border-radius: $border-radius-root;
padding-inline-start: calc(14px + var(--indent-padding) / 10) !important;
margin: 0 0 2px;
&:hover {
color: rgb(var(--v-theme-secondary));
}
.v-list-item__prepend {
margin-inline-end: 13px;
}
.v-list-item__append {
font-size: 0.875rem;
.v-icon {
margin-inline-start: 13px;
}
}
.v-list-item-title {
font-size: 0.875rem;
}
}
.v-list-group__items {
.v-list-item {
min-height: 35px !important;
padding-inline-start: calc(12px + var(--indent-padding) / 10) !important;
.v-list-item__prepend .dot {
height: 6px;
width: 6px;
background-color: rgb(var(--v-theme-textSecondary));
border-radius: 50%;
margin-inline-end: 8px !important;
opacity: 0;
}
.v-list-item-title {
font-size: 14px !important;
}
&:hover {
color: rgb(var(--v-theme-secondary));
.v-list-item__prepend .dot {
background-color: rgb(var(--v-theme-secondary));
}
}
&.v-list-item--active {
.v-list-item__prepend .dot {
background-color: rgb(var(--v-theme-secondary));
}
}
}
}
/*This is for the dropdown*/
.v-list {
color: rgb(var(--v-theme-textPrimary));
>.v-list-item.v-list-item--active,
.v-list-item--active>.v-list-item__overlay {
background: rgb(var(--v-theme-secondary));
color: white;
}
>.v-list-group {
position: relative;
>.v-list-item--active,
>.v-list-item--active:hover {
background: rgb(var(--v-theme-secondary));
color: white;
}
.v-list-group__items .v-list-item.v-list-item--active,
.v-list-group__items .v-list-item.v-list-item--active>.v-list-item__overlay {
background: transparent;
color: rgb(var(--v-theme-secondary));
}
}
}
}
.v-navigation-drawer--rail {
.scrollnavbar .v-list .v-list-group__items,
.hide-menu {
opacity: 1;
}
.leftPadding {
margin-left: 0px;
}
}
@media only screen and (min-width: 1170px) {
.mini-sidebar {
.logo {
width: 40px;
overflow: hidden;
padding-left: 0;
}
.profile-logout {
opacity: 0;
width: 0;
}
.scrollnavbar {
.smallCap {
padding: 3px 12px 12px 12px !important;
}
}
.leftSidebar .v-list--density-default .v-list-subheader {
padding-inline-start: 15px !important;
}
.mini-icon {
display: block;
}
.sidebarchip.hide-menu {
opacity: 0;
}
.mini-text {
display: none;
}
.v-list {
padding: 14px !important;
}
.v-list-group__items {
.iconClass {
position: relative;
left: -2px;
}
}
.leftSidebar:hover {
box-shadow: $box-shadow !important;
.mini-icon {
display: none;
}
.sidebarchip.hide-menu {
opacity: 1;
}
.mini-text {
display: block;
}
.profile-logout {
opacity: 1;
width: auto;
}
.scrollnavbar {
.smallCap {
padding: 3px 12px 12px 0px !important;
}
}
.v-list-group__items {
.iconClass {
position: relative;
left: 0px;
}
}
.v-list--density-default .v-list-subheader {
padding-inline-start: 0px !important;
}
.v-list-group__items {
.v-list-item {
.v-list-item__prepend .dot {
opacity:0;
}
}
}
}
.v-navigation-drawer--expand-on-hover:hover {
.logo {
width: 100%;
}
.v-list .v-list-group__items,
.hide-menu {
opacity: 1;
}
}
.profile-img {
margin-left: 0;
&::before {
left: 12px;
}
}
.menu-toggle {
margin-left: 24px;
}
.v-list-group__items {
.v-list-item {
.v-list-item__prepend .dot {
opacity: 1;
}
}
}
}
}
// scrollbar
.ps__rail-y {
z-index: 9;
}
.profile-img {
margin-left: 14px;
&::before {
-webkit-animation: 2.5s blow 0s linear infinite;
animation: 2.5s blow 0s linear infinite;
position: absolute;
content: "";
width: 50px;
height: 50px;
top: 40px;
border-radius: 50%;
z-index: 0;
left: 26px;
}
@-webkit-keyframes blow {
0% {
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.1);
opacity: 1;
-webkit-transform: scale3d(1, 1, 0.5);
transform: scale3d(1, 1, 0.5);
}
50% {
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
opacity: 1;
-webkit-transform: scale3d(1, 1, 0.5);
transform: scale3d(1, 1, 0.5);
}
100% {
box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.1);
opacity: 0;
-webkit-transform: scale3d(1, 1, 0.5);
transform: scale3d(1, 1, 0.5);
}
}
@keyframes blow {
0% {
box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.1);
opacity: 1;
-webkit-transform: scale3d(1, 1, 0.5);
transform: scale3d(1, 1, 0.5);
}
50% {
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
opacity: 1;
-webkit-transform: scale3d(1, 1, 0.5);
transform: scale3d(1, 1, 0.5);
}
100% {
box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.1);
opacity: 0;
-webkit-transform: scale3d(1, 1, 0.5);
transform: scale3d(1, 1, 0.5);
}
}
}
+98
View File
@@ -0,0 +1,98 @@
$sizes: (
'display-1': 44px,
'display-2': 40px,
'display-3': 30px,
'h1': 36px,
'h2': 30px,
'h3': 21px,
'h4': 18px,
'h5': 16px,
'h6': 14px,
'text-10': 10px,
'text-12': 12px,
'text-13': 13px,
'text-14': 14px,
'text-15': 15px,
'text-16': 16px,
'text-17': 17px,
'text-18': 18px,
'text-20': 20px,
'text-22': 22px,
'text-24': 24px,
'text-28': 28px,
'text-34': 34px,
'text-40': 40px,
'text-44': 44px,
'text-48': 48px,
'text-50': 50px,
'text-52': 52px,
'text-56': 56px,
'text-64': 64px,
'body-text-1': 10px
);
@each $pixel, $size in $sizes {
.#{$pixel} {
font-size: $size;
line-height: $size + 10;
}
}
$height: (
'h-10': 10px,
'h-12': 12px,
'h-15': 15px,
);
@each $pixel, $size in $height {
.#{$pixel} {
height: $size;
width: $size ;
}
}
.textSecondary {
color: rgb(var(--v-theme-textSecondary)) !important;
}
.textPrimary {
color: rgb(var(--v-theme-textPrimary)) !important;
}
// line height
.lh-md {
line-height: 1.57;
}
.lh-normal{
line-height: normal;
}
.font-weight-semibold {
font-weight: 600;
}
// hover text
.text-hover-primary {
color: rgb(var(--v-theme-textPrimary));
&:hover {
color: rgb(var(--v-theme-primary));
}
}
.link {
color: rgb(var(--v-theme-textSecondary));
text-decoration: none;
&:hover {
color: rgb(var(--v-theme-primary));
}
}
.hover-primary {
&:hover {
color: rgb(var(--v-theme-primary)) !important;
opacity: 1;
}
}
+110
View File
@@ -0,0 +1,110 @@
.v-app-bar {
.v-toolbar__content {
padding: 0 15px;
> .v-btn:first-child {
margin-inline-start: 0;
}
.v-btn {
color: rgba(var(--v-theme-textsurface)) !important;
}
}
}
.custom-text-primary {
&.v-list-item:hover > .v-list-item__overlay {
display: none;
}
.custom-title {
color: rgb(var(--v-theme-textPrimary)) !important;
}
&:hover {
.custom-title {
color: rgb(var(--v-theme-primary)) !important;
}
}
}
@media screen and (max-width:1279px) {
.mini-sidebar {
.v-navigation-drawer.v-navigation-drawer--left {
width: 270px !important;
}
}
}
.notify {
position: relative;
top: -20px;
right: -8px;
.heartbit {
position: absolute;
top: -5px;
right: -2px;
height: 18px;
width: 18px;
z-index: 10;
border: 2px solid rgb(var(--v-theme-error));
border-radius: 70px;
animation: heartbit 1s ease-out;
-moz-animation: heartbit 1s ease-out;
-moz-animation-iteration-count: infinite;
-o-animation: heartbit 1s ease-out;
-o-animation-iteration-count: infinite;
-webkit-animation: heartbit 1s ease-out;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.point {
width: 4px;
height: 4px;
border-radius: 30px;
position: absolute;
right: 5px;
top: 2px;
background-color: rgb(var(--v-theme-error));
position: absolute;
}
}
@keyframes heartbit {
0% {
transform: scale(0);
opacity: 0;
}
25% {
transform: scale(0.1);
opacity: 0.1;
}
50% {
transform: scale(0.5);
opacity: 0.3;
}
75% {
transform: scale(0.8);
opacity: 0.5;
}
100% {
transform: scale(1);
opacity: 0;
}
}
.v-menu.mobile_popup .v-overlay__content {
width: 100%;
}
@media (max-width: 1199px) {
.main-head{
&.v-app-bar .v-toolbar__content{
width: 100%;
justify-content: space-between;
padding: 0 10px;
}
}
}
+240
View File
@@ -0,0 +1,240 @@
//
// common
//
.inside-left-sidebar {
.left-part {
width: 240px;
}
}
//
//Full Calendar
.fc {
.fc-button-group {
>.fc-button {
display: flex;
align-items: center;
padding: 7px 10px;
border: 0;
font-size: 14px;
background-color: rgba(var(--v-theme-grey200));
color: rgba(var(--v-theme-textPrimary));
.fc-icon{
color: rgba(var(--v-theme-textPrimary));
font-size: 20px;
}
&:hover,&:focus{
background-color: rgba(var(--v-theme-textPrimary));
color: #fff;
.fc-icon{
color: #fff;
}
}
}
.fc-button-primary:not(:disabled):active{
background-color: rgba(var(--v-theme-textPrimary));
}
.fc-button-primary:not(:disabled).fc-button-active {
background-color: rgb(var(--v-theme-textPrimary));
}
}
.fc-today-button{
padding: 7px 20px;
border: 0;
background-color: rgba(var(--v-theme-primary));
}
.fc-prev-button{
border-radius: 30px 0 0 30px;
}
.fc-toolbar-title{
font-weight: 600;
}
.fc-event-title{
font-size: 14px;
padding: 3px 6px;
}
.fc-button {
font-size: 14px;
font-weight: 500;
text-transform: capitalize;
.fc-icon {
font-size: 1.5em;
vertical-align: unset;
}
}
.fc-daygrid-day-number{
color: rgba(var(--v-theme-textSecondary));
font-size: 15px;
}
.fc-button-primary {
background: rgb(var(--v-theme-primary));
border-color: rgb(var(--v-theme-primary));
color: #fff;
&:hover {
background-color: rgb(var(--v-theme-primary));
border-color: rgb(var(--v-theme-primary));
}
&:not(:disabled).fc-button-active {
background-color: rgb(var(--v-theme-primary));
border-color: rgb(var(--v-theme-primary));
&:focus {
box-shadow: none;
}
}
&:not(:disabled) {
&:active {
background-color: rgb(var(--v-theme-primary));
border-color: rgb(var(--v-theme-primary));
&:focus {
box-shadow: none;
}
}
}
&:disabled {
background-color: rgb(var(--v-theme-primary));
border-color: rgb(var(--v-theme-primary));
opacity: 1;
}
}
.fc-col-header-cell-cushion {
display: inline-block;
padding: 10px 5px;
font-size: 14px;
font-weight: 600;
}
.fc-button-primary:not(:disabled).fc-button-active{
background-color: rgb(var(--v-theme-textPrimary));
}
}
.fc-theme-standard {
td {
border: 1px solid rgba(var(--v-border-color), 1) !important;
}
th {
border: 1px solid rgba(var(--v-border-color), 1) !important;
border-bottom: 0 !important;
background-color: rgba(var(--v-theme-grey200));
height: 56px;
vertical-align: middle;
color: rgba(var(--v-theme-textSecondary));
}
.fc-scrollgrid {
border: 0 !important;
}
}
.fc-h-event {
background-color: rgb(var(--v-theme-primary));
border: 0;
display: block;
}
.fc-direction-ltr {
.fc-button-group {
>.fc-button {
&:not(:last-child) {
border-bottom-left-radius: 30px;
border-top-left-radius: 30px;
}
&:not(:first-child) {
border-bottom-right-radius: 30px;
border-top-right-radius: 30px;
margin-left: -1px;
}
}
}
}
.fc-button-group {
.fc-dayGridMonth-button {
border-bottom-right-radius: 0px !important;
border-top-right-radius: 0px !important;
padding: 7px 20px !important;
}
.fc-timeGridDay-button {
border-bottom-left-radius: 0px !important;
border-top-left-radius: 0px !important;
padding: 7px 20px !important;
}
.fc-timeGridWeek-button {
border-radius: 0 !important;
padding: 7px 20px !important;
}
}
.fc-today-button {
border-radius: 30px !important;
font-size: 14px;
}
@media screen and (max-width:600px) {
.fc {
.fc-toolbar {
display: block;
text-align: center;
}
}
.fc-toolbar-chunk {
.fc-toolbar-title {
margin: 15px 0;
}
}
}
.customTab {
.v-btn {
&.v-tab-item--selected {
background-color: rgb(var(--v-theme-lightprimary)) !important;
.icon {
background-color: rgb(var(--v-theme-primary)) !important;
color: #fff !important;
}
}
}
}
.email-items {
padding: 0px 24px 12px;
&.selected-email {
.email-title {
color: rgb(var(--v-theme-primary)) !important;
}
}
&:hover {
background-color: rgb(var(--v-theme-hoverColor));
.email-title {
color: rgb(var(--v-theme-primary)) !important;
}
}
}
.email-content {
p {
margin: 10px 0;
}
}
+90
View File
@@ -0,0 +1,90 @@
.authentication{
&::before{
content: "";
position: absolute;
height: 100%;
width: 100%;
opacity: 0.3;
left: 0;
top: 0;
bottom: 0;
background: radial-gradient(rgb(210, 241, 223), rgb(211, 215, 250), rgb(186, 216, 244)) 0% 0% / 400% 400%;
}
@media screen and (max-width:1280px){
.auth-header{
position: unset;
}
}
}
.mw-450{
max-width: 450px;
width: 100%;;
}
.auth-header{
position: absolute;
top: 0;
left: 0;
}
.verification{
.v-field__input{
text-align: center;
}
}
.auth-divider{
span{
z-index: 1;
}
&::before{
position: absolute;
width: 100%;
border-top: thin solid rgb(var(--v-theme-borderColor));
top: 50%;
content: "";
transform: translateY(50%);
left: 0;
}
&::after
{
position: absolute;
width: 100%;
border-top: thin solid rgb(var(--v-theme-borderColor));
top: 50%;
content: "";
transform: translateY(50%);
right: 0;
}
}
@media (min-width: 1536px){
.auth{
.v-col-lg-7{
flex: 0 0 66.66%;
max-width: 66.66%;
}
.v-col-lg-5{
flex: 0 0 33.33%;
max-width: 33.33%;
}
}
}
@media screen and (max-width:1280px){
.mh-100{
height: 100% !important;
}
}
@media screen and (max-width:600px){
.mw-100{
width: 100%;
padding: 0 15px;
}
}
.auth{
.v-switch .v-label, .v-checkbox .v-label {
opacity: 0.7;
font-weight: 400 !important;
}
}
+227
View File
@@ -0,0 +1,227 @@
.month-table {
&.custom-px-0 {
thead {
tr {
th:first-child {
padding-left: 0 !important;
}
th:last-child {
padding-right: 0 !important;
}
}
}
tr.month-item {
td:first-child {
padding-left: 0 !important;
}
td:last-child {
padding-right: 0 !important;
}
}
}
tr.month-item {
td {
padding-top: 16px !important;
padding-bottom: 16px !important;
}
&:hover {
background: transparent !important;
}
}
tr.month-item-0 {
td {
padding-top: 12px !important;
padding-bottom: 12px !important;
}
&:hover {
background: transparent !important;
}
}
tr.month-item-hover {
td {
padding-top: 12px !important;
padding-bottom: 12px !important;
}
border-left: 4px solid transparent;
&:hover {
border-left: 4px solid rgba(var(--v-theme-primary)) !important;
}
}
}
.no-line {
.v-table .v-table__wrapper>table>tbody>tr:not(:last-child)>td {
border-bottom: 0 !important;
}
.v-table .v-table__wrapper>table>tbody>tr>td {
padding: 12px;
}
}
.recent-transaction {
.line {
width: 2px;
height: 35px;
}
}
.chip-label {
width: 80px;
justify-content: center;
}
//
// Apex Chart
//
body {
.apexcharts-tooltip {
border-radius: 16px;
}
.apexcharts-tooltip-marker {
border-radius: 4px;
width: 12px;
height: 4px;
}
.apexcharts-tooltip.apexcharts-theme-dark {
background: rgba(17, 28, 45, 0.8);
.apexcharts-tooltip-title {
border-bottom: 0;
background: rgba(17, 28, 45, 0.7);
}
}
.apexcharts-tooltip-series-group {
padding: 0 14px;
}
.apexcharts-tooltip-title {
padding: 10px 14px;
}
}
.profile-activity {
.v-tab {
&.v-btn {
border: 1px dashed rgba(var(--v-theme-borderColor));
border-radius: 8px;
min-width: 90px;
overflow: hidden;
padding: 15px 20px;
overflow: hidden;
.v-btn__content {
display: block;
}
&.v-tab--selected{
border: 1px solid rgba(var(--v-theme-borderColor));
border-bottom: 2px solid;
}
.v-tab__slider{
opacity: 0;
}
}
}
.v-slide-group__content {
gap: 16px;
}
}
.comment-box {
border-bottom: 1px solid rgba(var(--v-theme-borderColor));
padding-bottom: 20px;
margin-bottom: 20px;
cursor: pointer;
&:last-child {
border-bottom: 0;
padding-bottom: 0px;
margin-bottom: 0px;
}
.comment-action {
opacity: 0;
transition: 0.5s;
}
&:hover {
.comment-action {
opacity: 1;
}
}
}
.todo-list {
border-bottom: 1px solid rgba(var(--v-theme-borderColor));
padding-bottom: 25px;
margin-bottom: 25px;
cursor: pointer;
&:last-child {
border-bottom: 0;
padding-bottom: 20px;
margin-bottom: 20px;
}
}
.progress-cards {
border-inline-end: 1px solid rgba(var(--v-theme-borderColor));
&:last-child {
border: 0;
}
@media screen and (max-width:991px) {
border-inline-end: 0 !important
}
}
.notification {
border-bottom: 1px solid rgba(var(--v-theme-borderColor));
&:last-child {
border: 0;
}
}
.earning-cards {
@media screen and (max-width:991px){
.w-25{
width: 100% !important;
&.border-e{
border: 0 !important;
}
.mobile-border{
border-bottom:1px solid rgba(var(--v-theme-borderColor));
padding-bottom: 8px !important;
}
}
}
}
+48
View File
@@ -0,0 +1,48 @@
@use "../variables" as *;
.customize-table {
border-radius: $border-radius-root;
.vue3-easy-data-table__main,
.vue3-easy-data-table__footer {
border-radius: $border-radius-root;
}
white-space: nowrap;
--easy-table-border: 1px solid rgb(var(--v-theme-inputBorder), 0.1);
--easy-table-row-border: 1px solid rgb(var(--v-theme-inputBorder), 0.1);
--easy-table-header-font-size: 14px;
--easy-table-header-height: 50px;
--easy-table-header-font-color: rgb(var(--v-theme-textPrimary));
--easy-table-header-background-color: rgb(var(--v-theme-surface));
--easy-table-header-item-padding: 10px 15px;
--easy-table-body-even-row-font-color: rgb(var(--v-theme-surface));
--easy-table-body-even-row-background-color: rgba(0, 0, 0, 0.02);
--easy-table-body-row-font-color: rgb(var(--v-theme-textPrimary));
--easy-table-body-row-background-color: rgb(var(--v-theme-surface));
--easy-table-body-row-height: 50px;
--easy-table-body-row-font-size: 14px;
--easy-table-body-row-hover-font-color: rgb(var(--v-theme-textPrimary));
--easy-table-body-row-hover-background-color: rgba(0, 0, 0, 0.02);
--easy-table-body-item-padding: 15px;
--easy-table-footer-background-color: rgb(var(--v-theme-surface));
--easy-table-footer-font-color: rgb(var(--v-theme-textPrimary));
--easy-table-footer-font-size: 14px;
--easy-table-footer-padding: 0px 10px;
--easy-table-footer-height: 50px;
--easy-table-rows-per-page-selector-width: 70px;
--easy-table-rows-per-page-selector-option-padding: 10px;
--easy-table-scrollbar-track-color: #;
--easy-table-scrollbar-color: #;
--easy-table-scrollbar-thumb-color: #4c5d7a;
--easy-table-scrollbar-corner-color: #;
--easy-table-loading-mask-background-color: #;
}
+61
View File
@@ -0,0 +1,61 @@
.ProseMirror {
padding: 20px;
border: 1px solid rgb(var(--v-theme-inputBorder), 0.3);
border-radius: 0 0 12px 12px;
&.ProseMirror-focused {
outline-color: rgb(var(--v-theme-primary), 0.3) !important;
}
> * + * {
margin-top: 0.75em;
}
ul,
ol {
padding: 0 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 1.1;
}
code {
background-color: rgba(#616161, 0.1);
color: #616161;
}
pre {
background: #0d0d0d;
color: #fff;
font-family: 'JetBrainsMono', monospace;
padding: 0.75rem 1rem;
border-radius: 0.5rem;
code {
color: inherit;
padding: 0;
background: none;
font-size: 0.8rem;
}
}
img {
max-width: 100%;
height: auto;
}
blockquote {
padding-left: 1rem;
border-left: 2px solid rgba(#0d0d0d, 0.1);
}
hr {
border: none;
border-top: 2px solid rgba(#0d0d0d, 0.1);
margin: 2rem 0;
}
}
+91
View File
@@ -0,0 +1,91 @@
@use "./variables";
@use "vuetify/styles.scss";
@use "./override";
@use "./layout/text";
@use "./layout/reboot";
@use "./layout/container";
@use "./layout/sidebar";
@use "./layout/rtl";
@use "./layout/topbar";
@use "./layout/horizontal";
@use "./layout/dark";
@use "./layout/customizer";
@use "./theme/themeColors";
@use "./components/VDatatable";
@use "./components/VAlert";
@use "./components/VButtons";
@use "./components/VBreadcrumb";
@use "./components/VCard";
@use "./components/VCarousel";
@use "./components/VField";
@use "./components/VList";
@use "./components/VInput";
@use "./components/VNavigationDrawer";
@use "./components/VShadow";
@use "./components/VSwitch";
@use "./components/VSelectionControl";
@use "./components/VTextField";
@use "./components/VTextarea";
@use "./components/VTabs";
@use "./components/VTable";
@use "./components/VExpansionpanel";
@use "./components/VDatatables";
@use "./components/VStepper";
@use "./components/VLabs";
@use "./front/header";
@use "./front/general";
@use "./pages/datatable";
@use "./pages/dashboards";
@use "./pages/editor";
@use "./pages/authentication";
@use "./pages/apps";
//@use 'vue3-perfect-scrollbar/dist/vue3-perfect-scrollbar.css';
.small-stat-card {
border: 1px solid #25334355;
background-color: #152332;
border-radius: 8px;
}
.small-stat-card .v-card-subtitle {
padding: 8px 14px 4px;
font-size: 13px;
border-bottom: 1px solid #253343;
}
.small-stat-card .v-card-text {
font-size: 20px;
padding: 9px 14px 10px;
}
.small-stat-card.bg-error {
background-color: #cf667925 !important;
border: 1px solid #cf667955 !important;
}
.small-stat-card.bg-error .v-card-subtitle {
border-bottom: 1px solid #cf667955;
}
.small-stat-card.bg-warning {
background-color: #fb8c0025 !important;
border: 1px solid #fb8c0055 !important;
}
.small-stat-card.bg-warning .v-card-subtitle {
border-bottom: 1px solid #fb8c0055;
}
.small-stat-card .text-warning {
color: #fb8c00de !important;
}
.row-clickable tbody tr {
cursor: pointer;
}
.v-data-table-rows-loading,
.v-data-table-rows-no-data {
text-align: left;
}
+59
View File
@@ -0,0 +1,59 @@
// Light Theme Colors
.v-theme--AQUA_THEME {
--v-theme-primary: 0, 116, 186;
--v-theme-secondary: 71, 215, 188;
--v-theme-lightprimary: 229, 241, 248;
--v-theme-lightsecondary: 237, 251, 247;
}
.v-theme--PURPLE_THEME {
--v-theme-primary: 118, 62, 189;
--v-theme-secondary: 148, 208, 214;
--v-theme-lightprimary: 242, 236, 249;
--v-theme-lightsecondary: 237, 248, 250;
}
.v-theme--GREEN_THEME {
--v-theme-primary: 10, 126, 164;
--v-theme-secondary: 204, 218, 78;
--v-theme-lightprimary: 230, 242, 246;
--v-theme-lightsecondary: 250, 251, 239;
}
.v-theme--CYAN_THEME {
--v-theme-primary: 1, 192, 200;
--v-theme-secondary: 251, 150, 120;
--v-theme-lightprimary: 235, 249, 250;
--v-theme-lightsecondary: 255, 245, 242;
}
.v-theme--ORANGE_THEME {
--v-theme-primary: 250, 137, 107;
--v-theme-secondary: 0, 116, 186;
--v-theme-lightprimary: 251, 242, 239;
--v-theme-lightsecondary: 239, 249, 255;
}
.v-theme--DARK_AQUA_THEME{
--v-theme-primary: 0, 116, 186;
--v-theme-secondary: 71, 215, 188;
}
.v-theme--DARK_PURPLE_THEME {
--v-theme-primary: 118, 62, 189;
--v-theme-secondary: 148, 208, 214;
}
.v-theme--DARK_GREEN_THEME {
--v-theme-primary: 10, 126, 164;
--v-theme-secondary: 204, 218, 78;
}
.v-theme--DARK_CYAN_THEME {
--v-theme-primary: 1, 192, 200;
--v-theme-secondary: 251, 150, 120;
}
.v-theme--DARK_ORANGE_THEME {
--v-theme-primary: 250, 137, 107;
--v-theme-secondary: 0, 116, 186;
}