@keenmate/pure-admin-theme-dark 1.0.0-rc01 → 1.0.0-rc02
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dark.css +314 -166
- package/package.json +3 -3
- package/src/scss/dark.scss +122 -85
package/dist/dark.css
CHANGED
|
@@ -107,6 +107,42 @@ label {
|
|
|
107
107
|
font-size: inherit;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
+
/* Webkit browsers (Chrome, Safari, Edge) */
|
|
111
|
+
*::-webkit-scrollbar {
|
|
112
|
+
width: 6px;
|
|
113
|
+
height: 6px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
*::-webkit-scrollbar-track {
|
|
117
|
+
background: var(--pa-primary-bg);
|
|
118
|
+
border-radius: 3px;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
*::-webkit-scrollbar-thumb {
|
|
122
|
+
background: #404040;
|
|
123
|
+
border-radius: 3px;
|
|
124
|
+
border: 1px solid var(--pa-primary-bg);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
128
|
+
background: #4dabf7;
|
|
129
|
+
border-color: rgba(77, 171, 247, 0.15);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
*::-webkit-scrollbar-thumb:active {
|
|
133
|
+
background: rgba(77, 171, 247, 0.15);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
*::-webkit-scrollbar-corner {
|
|
137
|
+
background: var(--pa-primary-bg);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/* Firefox */
|
|
141
|
+
* {
|
|
142
|
+
scrollbar-width: thin;
|
|
143
|
+
scrollbar-color: var(--pa-border-color) var(--pa-primary-bg);
|
|
144
|
+
}
|
|
145
|
+
|
|
110
146
|
/* ========================================
|
|
111
147
|
Layout V2 - Based on Testbench Structure
|
|
112
148
|
======================================== */
|
|
@@ -2439,8 +2475,8 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2439
2475
|
}
|
|
2440
2476
|
|
|
2441
2477
|
.pa-card__header {
|
|
2442
|
-
padding: 0.8rem
|
|
2443
|
-
min-height:
|
|
2478
|
+
padding: 0.8rem 1rem;
|
|
2479
|
+
min-height: 4rem;
|
|
2444
2480
|
border-top-left-radius: 8px;
|
|
2445
2481
|
border-top-right-radius: 8px;
|
|
2446
2482
|
border-bottom: 1px solid var(--pa-border-color);
|
|
@@ -2501,10 +2537,11 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2501
2537
|
color: var(--pa-text-primary);
|
|
2502
2538
|
font-size: 1.6rem;
|
|
2503
2539
|
font-weight: 600;
|
|
2540
|
+
line-height: 1;
|
|
2504
2541
|
}
|
|
2505
2542
|
|
|
2506
2543
|
.pa-card__body {
|
|
2507
|
-
padding: 1.6rem
|
|
2544
|
+
padding: 1.6rem 1rem;
|
|
2508
2545
|
flex: 1;
|
|
2509
2546
|
}
|
|
2510
2547
|
|
|
@@ -2517,7 +2554,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2517
2554
|
}
|
|
2518
2555
|
|
|
2519
2556
|
.pa-card__footer {
|
|
2520
|
-
padding: 1.2rem
|
|
2557
|
+
padding: 1.2rem 1rem;
|
|
2521
2558
|
border-top: 1px solid var(--pa-border-color);
|
|
2522
2559
|
border-bottom-left-radius: 8px;
|
|
2523
2560
|
border-bottom-right-radius: 8px;
|
|
@@ -2626,7 +2663,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
|
|
|
2626
2663
|
}
|
|
2627
2664
|
|
|
2628
2665
|
.pa-card__tab {
|
|
2629
|
-
padding: 1.2rem
|
|
2666
|
+
padding: 1.2rem 1rem;
|
|
2630
2667
|
border: none;
|
|
2631
2668
|
background: none;
|
|
2632
2669
|
color: var(--pa-text-secondary);
|
|
@@ -2954,7 +2991,7 @@ a.pa-card p {
|
|
|
2954
2991
|
.pa-tabs__container--bordered {
|
|
2955
2992
|
border: 1px solid var(--pa-border-color);
|
|
2956
2993
|
border-radius: 8px;
|
|
2957
|
-
padding: 1.6rem;
|
|
2994
|
+
padding: 1.6rem 1rem;
|
|
2958
2995
|
background-color: var(--pa-card-bg);
|
|
2959
2996
|
}
|
|
2960
2997
|
|
|
@@ -2982,7 +3019,7 @@ a.pa-card p {
|
|
|
2982
3019
|
.pa-tabs__vertical-layout--bordered {
|
|
2983
3020
|
border: 1px solid var(--pa-border-color);
|
|
2984
3021
|
border-radius: 8px;
|
|
2985
|
-
padding: 1.6rem;
|
|
3022
|
+
padding: 1.6rem 1rem;
|
|
2986
3023
|
background-color: var(--pa-card-bg);
|
|
2987
3024
|
}
|
|
2988
3025
|
|
|
@@ -3110,8 +3147,8 @@ a.pa-card p {
|
|
|
3110
3147
|
}
|
|
3111
3148
|
|
|
3112
3149
|
.pa-stat__icon--info {
|
|
3113
|
-
background-color: rgba(
|
|
3114
|
-
color: #
|
|
3150
|
+
background-color: rgba(8, 145, 178, 0.15);
|
|
3151
|
+
color: #0891b2;
|
|
3115
3152
|
}
|
|
3116
3153
|
|
|
3117
3154
|
.pa-stat__content {
|
|
@@ -3149,7 +3186,7 @@ a.pa-card p {
|
|
|
3149
3186
|
font-size: 3.2rem;
|
|
3150
3187
|
font-weight: 700;
|
|
3151
3188
|
color: var(--pa-text-primary);
|
|
3152
|
-
line-height: 1;
|
|
3189
|
+
line-height: 1.1;
|
|
3153
3190
|
margin-bottom: 0.8rem;
|
|
3154
3191
|
}
|
|
3155
3192
|
|
|
@@ -3193,7 +3230,7 @@ a.pa-card p {
|
|
|
3193
3230
|
.pa-stat--square .pa-stat__number {
|
|
3194
3231
|
font-size: clamp(4.8rem, 8vw, 7.2rem);
|
|
3195
3232
|
font-weight: 700;
|
|
3196
|
-
line-height: 1;
|
|
3233
|
+
line-height: 1.1;
|
|
3197
3234
|
color: inherit;
|
|
3198
3235
|
z-index: 2px;
|
|
3199
3236
|
position: relative;
|
|
@@ -3206,7 +3243,7 @@ a.pa-card p {
|
|
|
3206
3243
|
.pa-stat--square .pa-stat__symbol {
|
|
3207
3244
|
font-size: clamp(6.4rem, 10vw, 9.6rem);
|
|
3208
3245
|
font-weight: 700;
|
|
3209
|
-
line-height: 1;
|
|
3246
|
+
line-height: 1.1;
|
|
3210
3247
|
opacity: 0.12;
|
|
3211
3248
|
color: inherit;
|
|
3212
3249
|
position: absolute;
|
|
@@ -3244,13 +3281,13 @@ a.pa-card p {
|
|
|
3244
3281
|
}
|
|
3245
3282
|
|
|
3246
3283
|
.pa-stat--square.pa-stat--info {
|
|
3247
|
-
background-color: #
|
|
3284
|
+
background-color: #0891b2;
|
|
3248
3285
|
color: #ffffff;
|
|
3249
3286
|
}
|
|
3250
3287
|
|
|
3251
3288
|
.pa-stat--square.pa-stat--warning {
|
|
3252
3289
|
background-color: #d97706;
|
|
3253
|
-
color: #
|
|
3290
|
+
color: #ffffff;
|
|
3254
3291
|
}
|
|
3255
3292
|
|
|
3256
3293
|
.pa-stat--square.pa-stat--danger {
|
|
@@ -3354,7 +3391,7 @@ a.pa-card p {
|
|
|
3354
3391
|
|
|
3355
3392
|
.pa-list-basic--icon.pa-list-basic--info li::before {
|
|
3356
3393
|
content: "→";
|
|
3357
|
-
color: #
|
|
3394
|
+
color: #0891b2;
|
|
3358
3395
|
}
|
|
3359
3396
|
|
|
3360
3397
|
.pa-list-basic--icon.pa-list-basic--warning li::before {
|
|
@@ -3427,7 +3464,7 @@ a.pa-card p {
|
|
|
3427
3464
|
display: flex;
|
|
3428
3465
|
align-items: center;
|
|
3429
3466
|
gap: 1.2rem;
|
|
3430
|
-
padding: 1.2rem
|
|
3467
|
+
padding: 1.2rem 1rem;
|
|
3431
3468
|
border-bottom: 1px solid var(--pa-border-color);
|
|
3432
3469
|
}
|
|
3433
3470
|
|
|
@@ -3745,7 +3782,7 @@ a.pa-card p {
|
|
|
3745
3782
|
}
|
|
3746
3783
|
|
|
3747
3784
|
.pa-composite-badge--secondary .pa-composite-badge__label {
|
|
3748
|
-
background-color: #
|
|
3785
|
+
background-color: #1a1a1a;
|
|
3749
3786
|
color: var(--pa-text-secondary);
|
|
3750
3787
|
}
|
|
3751
3788
|
|
|
@@ -3773,7 +3810,7 @@ a.pa-card p {
|
|
|
3773
3810
|
|
|
3774
3811
|
.pa-composite-badge--success .pa-composite-badge__label {
|
|
3775
3812
|
background-color: #d4edda;
|
|
3776
|
-
color: #
|
|
3813
|
+
color: #34d399;
|
|
3777
3814
|
}
|
|
3778
3815
|
|
|
3779
3816
|
.pa-composite-badge--success .pa-composite-badge__label:hover {
|
|
@@ -3800,7 +3837,7 @@ a.pa-card p {
|
|
|
3800
3837
|
|
|
3801
3838
|
.pa-composite-badge--danger .pa-composite-badge__label {
|
|
3802
3839
|
background-color: #f8d7da;
|
|
3803
|
-
color: #
|
|
3840
|
+
color: #f87171;
|
|
3804
3841
|
}
|
|
3805
3842
|
|
|
3806
3843
|
.pa-composite-badge--danger .pa-composite-badge__label:hover {
|
|
@@ -3827,7 +3864,7 @@ a.pa-card p {
|
|
|
3827
3864
|
|
|
3828
3865
|
.pa-composite-badge--warning .pa-composite-badge__label {
|
|
3829
3866
|
background-color: #fff3cd;
|
|
3830
|
-
color: #
|
|
3867
|
+
color: #fbbf24;
|
|
3831
3868
|
}
|
|
3832
3869
|
|
|
3833
3870
|
.pa-composite-badge--warning .pa-composite-badge__label:hover {
|
|
@@ -3840,7 +3877,7 @@ a.pa-card p {
|
|
|
3840
3877
|
}
|
|
3841
3878
|
|
|
3842
3879
|
.pa-composite-badge--warning .pa-composite-badge__button:hover {
|
|
3843
|
-
background-color: #
|
|
3880
|
+
background-color: #b45309;
|
|
3844
3881
|
}
|
|
3845
3882
|
|
|
3846
3883
|
.pa-composite-badge--warning .pa-composite-badge__button:focus {
|
|
@@ -3854,7 +3891,7 @@ a.pa-card p {
|
|
|
3854
3891
|
|
|
3855
3892
|
.pa-composite-badge--info .pa-composite-badge__label {
|
|
3856
3893
|
background-color: #d1ecf1;
|
|
3857
|
-
color: #
|
|
3894
|
+
color: #22d3ee;
|
|
3858
3895
|
}
|
|
3859
3896
|
|
|
3860
3897
|
.pa-composite-badge--info .pa-composite-badge__label:hover {
|
|
@@ -3946,7 +3983,7 @@ a.pa-card p {
|
|
|
3946
3983
|
|
|
3947
3984
|
.pa-composite-badge--warning .pa-composite-badge__icon {
|
|
3948
3985
|
background-color: #d97706;
|
|
3949
|
-
color: #
|
|
3986
|
+
color: #ffffff;
|
|
3950
3987
|
}
|
|
3951
3988
|
|
|
3952
3989
|
.pa-composite-badge--info .pa-composite-badge__icon {
|
|
@@ -3982,7 +4019,7 @@ a.pa-card p {
|
|
|
3982
4019
|
|
|
3983
4020
|
.pa-composite-badge--label-success .pa-composite-badge__label {
|
|
3984
4021
|
background-color: #d4edda;
|
|
3985
|
-
color: #
|
|
4022
|
+
color: #34d399;
|
|
3986
4023
|
}
|
|
3987
4024
|
|
|
3988
4025
|
.pa-composite-badge--label-success .pa-composite-badge__label:hover {
|
|
@@ -3991,7 +4028,7 @@ a.pa-card p {
|
|
|
3991
4028
|
|
|
3992
4029
|
.pa-composite-badge--label-danger .pa-composite-badge__label {
|
|
3993
4030
|
background-color: #f8d7da;
|
|
3994
|
-
color: #
|
|
4031
|
+
color: #f87171;
|
|
3995
4032
|
}
|
|
3996
4033
|
|
|
3997
4034
|
.pa-composite-badge--label-danger .pa-composite-badge__label:hover {
|
|
@@ -4000,7 +4037,7 @@ a.pa-card p {
|
|
|
4000
4037
|
|
|
4001
4038
|
.pa-composite-badge--label-warning .pa-composite-badge__label {
|
|
4002
4039
|
background-color: #fff3cd;
|
|
4003
|
-
color: #
|
|
4040
|
+
color: #fbbf24;
|
|
4004
4041
|
}
|
|
4005
4042
|
|
|
4006
4043
|
.pa-composite-badge--label-warning .pa-composite-badge__label:hover {
|
|
@@ -4009,7 +4046,7 @@ a.pa-card p {
|
|
|
4009
4046
|
|
|
4010
4047
|
.pa-composite-badge--label-info .pa-composite-badge__label {
|
|
4011
4048
|
background-color: #d1ecf1;
|
|
4012
|
-
color: #
|
|
4049
|
+
color: #22d3ee;
|
|
4013
4050
|
}
|
|
4014
4051
|
|
|
4015
4052
|
.pa-composite-badge--label-info .pa-composite-badge__label:hover {
|
|
@@ -4072,11 +4109,11 @@ a.pa-card p {
|
|
|
4072
4109
|
|
|
4073
4110
|
.pa-composite-badge--btn-warning .pa-composite-badge__button {
|
|
4074
4111
|
background-color: #d97706;
|
|
4075
|
-
color: #
|
|
4112
|
+
color: #ffffff;
|
|
4076
4113
|
}
|
|
4077
4114
|
|
|
4078
4115
|
.pa-composite-badge--btn-warning .pa-composite-badge__button:hover {
|
|
4079
|
-
background-color: #
|
|
4116
|
+
background-color: #b45309;
|
|
4080
4117
|
}
|
|
4081
4118
|
|
|
4082
4119
|
.pa-composite-badge--btn-warning .pa-composite-badge__button:focus {
|
|
@@ -5381,7 +5418,7 @@ a.pa-card p {
|
|
|
5381
5418
|
align-items: center;
|
|
5382
5419
|
justify-content: space-between;
|
|
5383
5420
|
padding: 0.8rem 0.3rem 0.8rem 0.8rem;
|
|
5384
|
-
border-bottom: 1px solid #
|
|
5421
|
+
border-bottom: 1px solid #404040;
|
|
5385
5422
|
background-color: var(--pa-card-header-bg);
|
|
5386
5423
|
border-radius: 4px 4px 0 0;
|
|
5387
5424
|
}
|
|
@@ -5508,7 +5545,7 @@ a.pa-card p {
|
|
|
5508
5545
|
======================================== */
|
|
5509
5546
|
.pa-alert {
|
|
5510
5547
|
position: relative;
|
|
5511
|
-
padding: 1.2rem
|
|
5548
|
+
padding: 1.2rem 1rem;
|
|
5512
5549
|
margin-bottom: 1.6rem;
|
|
5513
5550
|
border: 1px solid transparent;
|
|
5514
5551
|
border-radius: 4px;
|
|
@@ -5610,12 +5647,12 @@ a.pa-card p {
|
|
|
5610
5647
|
}
|
|
5611
5648
|
|
|
5612
5649
|
.pa-alert--sm {
|
|
5613
|
-
padding: 1.2rem
|
|
5650
|
+
padding: 1.2rem 1rem;
|
|
5614
5651
|
font-size: 1.4rem;
|
|
5615
5652
|
}
|
|
5616
5653
|
|
|
5617
5654
|
.pa-alert--lg {
|
|
5618
|
-
padding: 1.2rem
|
|
5655
|
+
padding: 1.2rem 1rem;
|
|
5619
5656
|
font-size: 1.6rem;
|
|
5620
5657
|
}
|
|
5621
5658
|
|
|
@@ -5656,7 +5693,7 @@ a.pa-card p {
|
|
|
5656
5693
|
top: 0;
|
|
5657
5694
|
right: 0;
|
|
5658
5695
|
z-index: 2px;
|
|
5659
|
-
padding: 1.2rem
|
|
5696
|
+
padding: 1.2rem 1rem;
|
|
5660
5697
|
background: none;
|
|
5661
5698
|
border: none;
|
|
5662
5699
|
font-size: 2rem;
|
|
@@ -6814,7 +6851,7 @@ web-daterangepicker {
|
|
|
6814
6851
|
--drp-badge-success: #059669;
|
|
6815
6852
|
--drp-badge-warning: #d97706;
|
|
6816
6853
|
--drp-badge-danger: #dc2626;
|
|
6817
|
-
--drp-badge-info: #
|
|
6854
|
+
--drp-badge-info: #0891b2;
|
|
6818
6855
|
/* Number badges */
|
|
6819
6856
|
--drp-badge-number-bg: #dc2626;
|
|
6820
6857
|
--drp-badge-number-color: #ffffff;
|
|
@@ -8906,7 +8943,7 @@ code {
|
|
|
8906
8943
|
display: flex;
|
|
8907
8944
|
align-items: center;
|
|
8908
8945
|
gap: 1.2rem;
|
|
8909
|
-
padding:
|
|
8946
|
+
padding: 0.8rem 1.6rem;
|
|
8910
8947
|
color: var(--pa-text-primary);
|
|
8911
8948
|
text-decoration: none;
|
|
8912
8949
|
border-radius: 4px;
|
|
@@ -8925,7 +8962,7 @@ code {
|
|
|
8925
8962
|
}
|
|
8926
8963
|
|
|
8927
8964
|
.pa-profile-panel__nav-icon {
|
|
8928
|
-
font-size: 1.
|
|
8965
|
+
font-size: 1.6rem;
|
|
8929
8966
|
width: 2.4rem;
|
|
8930
8967
|
text-align: center;
|
|
8931
8968
|
}
|
|
@@ -8937,51 +8974,118 @@ code {
|
|
|
8937
8974
|
margin-top: auto;
|
|
8938
8975
|
}
|
|
8939
8976
|
|
|
8940
|
-
|
|
8941
|
-
.
|
|
8942
|
-
|
|
8943
|
-
|
|
8944
|
-
}
|
|
8945
|
-
.pa-header__profile-name {
|
|
8946
|
-
display: none;
|
|
8947
|
-
}
|
|
8977
|
+
.pa-profile-panel__tabs {
|
|
8978
|
+
padding: 0 2.4rem;
|
|
8979
|
+
border-bottom: 1px solid var(--pa-border-color);
|
|
8980
|
+
background-color: var(--pa-header-bg);
|
|
8948
8981
|
}
|
|
8949
|
-
|
|
8950
|
-
|
|
8951
|
-
|
|
8952
|
-
|
|
8982
|
+
|
|
8983
|
+
.pa-profile-panel__tabs .pa-tabs {
|
|
8984
|
+
border-bottom: none;
|
|
8985
|
+
margin-bottom: 0;
|
|
8953
8986
|
}
|
|
8954
8987
|
|
|
8955
|
-
|
|
8956
|
-
|
|
8957
|
-
border-
|
|
8988
|
+
.pa-profile-panel__tabs .pa-tabs__item {
|
|
8989
|
+
color: var(--pa-header-text-secondary);
|
|
8990
|
+
border-bottom-color: transparent;
|
|
8958
8991
|
}
|
|
8959
8992
|
|
|
8960
|
-
|
|
8961
|
-
|
|
8993
|
+
.pa-profile-panel__tabs .pa-tabs__item:hover {
|
|
8994
|
+
color: var(--pa-header-text);
|
|
8995
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
8996
|
+
}
|
|
8997
|
+
|
|
8998
|
+
.pa-profile-panel__tabs .pa-tabs__item--active {
|
|
8999
|
+
color: var(--pa-header-text);
|
|
9000
|
+
border-bottom-color: var(--pa-accent);
|
|
9001
|
+
}
|
|
9002
|
+
|
|
9003
|
+
.pa-profile-panel__favorites {
|
|
9004
|
+
display: flex;
|
|
9005
|
+
flex-direction: column;
|
|
9006
|
+
gap: 0.8rem;
|
|
9007
|
+
}
|
|
9008
|
+
|
|
9009
|
+
.pa-profile-panel__favorites ul {
|
|
9010
|
+
list-style: none;
|
|
9011
|
+
margin: 0;
|
|
9012
|
+
padding: 0;
|
|
9013
|
+
}
|
|
9014
|
+
|
|
9015
|
+
.pa-profile-panel__favorites li {
|
|
9016
|
+
margin-bottom: 0.8rem;
|
|
9017
|
+
}
|
|
9018
|
+
|
|
9019
|
+
.pa-profile-panel__favorite-item {
|
|
9020
|
+
display: flex;
|
|
9021
|
+
align-items: center;
|
|
9022
|
+
gap: 1.2rem;
|
|
9023
|
+
padding: 0.8rem 1.6rem;
|
|
9024
|
+
color: var(--pa-text-primary);
|
|
9025
|
+
text-decoration: none;
|
|
8962
9026
|
border-radius: 4px;
|
|
8963
|
-
|
|
9027
|
+
cursor: pointer;
|
|
9028
|
+
transition: background-color 0.1s ease-out, color 0.1s ease-out;
|
|
9029
|
+
font-weight: 500;
|
|
8964
9030
|
}
|
|
8965
9031
|
|
|
8966
|
-
|
|
8967
|
-
background:
|
|
8968
|
-
|
|
9032
|
+
.pa-profile-panel__favorite-item:hover {
|
|
9033
|
+
background-color: var(--pa-accent-light);
|
|
9034
|
+
color: var(--pa-accent);
|
|
8969
9035
|
}
|
|
8970
9036
|
|
|
8971
|
-
|
|
8972
|
-
|
|
9037
|
+
.pa-profile-panel__favorite-item:focus {
|
|
9038
|
+
outline: 2px solid var(--pa-accent);
|
|
9039
|
+
outline-offset: 2px;
|
|
8973
9040
|
}
|
|
8974
9041
|
|
|
8975
|
-
|
|
8976
|
-
|
|
9042
|
+
.pa-profile-panel__favorite-icon {
|
|
9043
|
+
font-size: 1.6rem;
|
|
9044
|
+
width: 2.4rem;
|
|
9045
|
+
text-align: center;
|
|
8977
9046
|
}
|
|
8978
9047
|
|
|
8979
|
-
|
|
8980
|
-
|
|
8981
|
-
|
|
8982
|
-
|
|
9048
|
+
.pa-profile-panel__favorite-label {
|
|
9049
|
+
flex: 1;
|
|
9050
|
+
}
|
|
9051
|
+
|
|
9052
|
+
.pa-profile-panel__favorite-remove {
|
|
9053
|
+
opacity: 0;
|
|
9054
|
+
margin-left: auto;
|
|
9055
|
+
background: none;
|
|
9056
|
+
border: none;
|
|
9057
|
+
padding: 0.8rem;
|
|
9058
|
+
color: var(--pa-text-secondary);
|
|
9059
|
+
cursor: pointer;
|
|
9060
|
+
border-radius: 4px;
|
|
9061
|
+
font-size: 1.4rem;
|
|
9062
|
+
line-height: 1;
|
|
9063
|
+
transition: opacity 0.1s ease-out, color 0.1s ease-out, background-color 0.1s ease-out;
|
|
9064
|
+
}
|
|
9065
|
+
|
|
9066
|
+
.pa-profile-panel__favorite-remove:hover {
|
|
9067
|
+
color: var(--pa-danger);
|
|
9068
|
+
background-color: var(--pa-danger-bg-light);
|
|
9069
|
+
}
|
|
9070
|
+
|
|
9071
|
+
.pa-profile-panel__favorite-item:hover .pa-profile-panel__favorite-remove {
|
|
9072
|
+
opacity: 1;
|
|
9073
|
+
}
|
|
9074
|
+
|
|
9075
|
+
.pa-profile-panel__favorites-add {
|
|
9076
|
+
margin-top: auto;
|
|
9077
|
+
padding-top: 1.2rem;
|
|
8983
9078
|
}
|
|
8984
9079
|
|
|
9080
|
+
@media (max-width: 768px) {
|
|
9081
|
+
.pa-profile-panel__content {
|
|
9082
|
+
width: 85vw;
|
|
9083
|
+
max-width: 40rem;
|
|
9084
|
+
}
|
|
9085
|
+
.pa-header__profile-name {
|
|
9086
|
+
display: none;
|
|
9087
|
+
}
|
|
9088
|
+
}
|
|
8985
9089
|
/* ========================================
|
|
8986
9090
|
Modal Components
|
|
8987
9091
|
Modal windows with overlay, sizes, and themed headers
|
|
@@ -9468,8 +9572,8 @@ code {
|
|
|
9468
9572
|
}
|
|
9469
9573
|
|
|
9470
9574
|
.pa-timeline--simple .pa-timeline__item--info::before {
|
|
9471
|
-
border-color: #
|
|
9472
|
-
box-shadow: 3px 3px 0 rgba(
|
|
9575
|
+
border-color: #0891b2;
|
|
9576
|
+
box-shadow: 3px 3px 0 rgba(8, 145, 178, 0.3);
|
|
9473
9577
|
}
|
|
9474
9578
|
|
|
9475
9579
|
.pa-timeline--simple .pa-timeline__item--secondary::before {
|
|
@@ -9498,7 +9602,7 @@ code {
|
|
|
9498
9602
|
}
|
|
9499
9603
|
|
|
9500
9604
|
.pa-timeline--simple .pa-timeline__item--filled.pa-timeline__item--info::before {
|
|
9501
|
-
background: #
|
|
9605
|
+
background: #0891b2;
|
|
9502
9606
|
}
|
|
9503
9607
|
|
|
9504
9608
|
.pa-timeline--simple .pa-timeline__item--filled.pa-timeline__item--secondary::before {
|
|
@@ -9674,7 +9778,7 @@ code {
|
|
|
9674
9778
|
margin: 0;
|
|
9675
9779
|
font-size: 1.6rem;
|
|
9676
9780
|
line-height: 1.8;
|
|
9677
|
-
color: #
|
|
9781
|
+
color: #fbbf24;
|
|
9678
9782
|
}
|
|
9679
9783
|
|
|
9680
9784
|
@media (max-width: 767px) {
|
|
@@ -10175,7 +10279,7 @@ code {
|
|
|
10175
10279
|
flex-shrink: 0;
|
|
10176
10280
|
font-size: 1.2rem;
|
|
10177
10281
|
padding: 2px 0.4rem;
|
|
10178
|
-
background-color: #
|
|
10282
|
+
background-color: #404040;
|
|
10179
10283
|
color: var(--pa-text-secondary);
|
|
10180
10284
|
border-radius: 2px;
|
|
10181
10285
|
}
|
|
@@ -10197,7 +10301,7 @@ code {
|
|
|
10197
10301
|
|
|
10198
10302
|
.pa-command-palette__key {
|
|
10199
10303
|
padding: 2px 0.4rem;
|
|
10200
|
-
background-color: #
|
|
10304
|
+
background-color: #404040;
|
|
10201
10305
|
border: 1px solid var(--pa-border-color);
|
|
10202
10306
|
border-radius: 2px;
|
|
10203
10307
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
@@ -10334,7 +10438,7 @@ code {
|
|
|
10334
10438
|
font-size: 1rem;
|
|
10335
10439
|
font-weight: 500;
|
|
10336
10440
|
color: var(--pa-text-secondary);
|
|
10337
|
-
background-color: #
|
|
10441
|
+
background-color: #404040;
|
|
10338
10442
|
border: 1px solid var(--pa-border-color);
|
|
10339
10443
|
border-radius: 2px;
|
|
10340
10444
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
@@ -10407,7 +10511,7 @@ code {
|
|
|
10407
10511
|
font-size: 1rem;
|
|
10408
10512
|
font-weight: 500;
|
|
10409
10513
|
color: var(--pa-text-primary);
|
|
10410
|
-
background-color: #
|
|
10514
|
+
background-color: #404040;
|
|
10411
10515
|
border: 1px solid var(--pa-border-color);
|
|
10412
10516
|
border-radius: 2px;
|
|
10413
10517
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
@@ -10496,7 +10600,7 @@ code {
|
|
|
10496
10600
|
}
|
|
10497
10601
|
|
|
10498
10602
|
.pa-logic-tree__block--or {
|
|
10499
|
-
border-color: #
|
|
10603
|
+
border-color: #0891b2;
|
|
10500
10604
|
background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
|
|
10501
10605
|
}
|
|
10502
10606
|
|
|
@@ -12640,33 +12744,76 @@ html.font-size-4xl {
|
|
|
12640
12744
|
--base-accent-color-active: rgb(174.6129032258, 217.064516129, 251.3870967742);
|
|
12641
12745
|
--base-accent-color-light: rgba(77, 171, 247, 0.08);
|
|
12642
12746
|
--base-accent-color-light-hover: rgba(77, 171, 247, 0.12);
|
|
12643
|
-
--base-primary-bg: #2a2a2a;
|
|
12644
|
-
--base-primary-bg-hover: #333333;
|
|
12645
12747
|
--base-text-color-1: #ffffff;
|
|
12646
12748
|
--base-text-color-2: #b8b8b8;
|
|
12647
12749
|
--base-text-color-3: #888888;
|
|
12648
12750
|
--base-text-color-4: #666666;
|
|
12649
12751
|
--base-text-color-on-accent: #ffffff;
|
|
12752
|
+
--base-surface-1: #2a2a2a;
|
|
12753
|
+
--base-surface-2: #1a1a1a;
|
|
12754
|
+
--base-surface-3: #404040;
|
|
12755
|
+
--base-surface-inverse: #ffffff;
|
|
12756
|
+
--base-overlay-bg: rgba(0, 0, 0, 0.7);
|
|
12757
|
+
--base-shadow-color: rgba(0, 0, 0, 0.4);
|
|
12758
|
+
--base-primary-bg: #2a2a2a;
|
|
12759
|
+
--base-primary-bg-hover: rgb(29.25, 29.25, 29.25);
|
|
12650
12760
|
--base-border-color: #404040;
|
|
12651
|
-
--base-border: 1px solid #
|
|
12652
|
-
--base-input-bg: #
|
|
12761
|
+
--base-border: 1px solid #404040;
|
|
12762
|
+
--base-input-bg: #333333;
|
|
12653
12763
|
--base-input-color: #ffffff;
|
|
12654
12764
|
--base-input-border: 1px solid #404040;
|
|
12655
12765
|
--base-input-border-hover: 1px solid #4dabf7;
|
|
12656
12766
|
--base-input-border-focus: 1px solid #4dabf7;
|
|
12657
12767
|
--base-input-placeholder-color: #666666;
|
|
12658
|
-
--base-input-bg-disabled: rgba(
|
|
12768
|
+
--base-input-bg-disabled: rgba(51, 51, 51, 0.5);
|
|
12659
12769
|
--base-input-size-xs-height: 3.1;
|
|
12660
12770
|
--base-input-size-sm-height: 3.3;
|
|
12661
12771
|
--base-input-size-md-height: 3.5;
|
|
12662
12772
|
--base-input-size-lg-height: 3.8;
|
|
12663
12773
|
--base-input-size-xl-height: 4.1;
|
|
12664
|
-
--base-dropdown-bg: #
|
|
12665
|
-
--base-dropdown-border:
|
|
12774
|
+
--base-dropdown-bg: #2a2a2a;
|
|
12775
|
+
--base-dropdown-border: #404040;
|
|
12666
12776
|
--base-dropdown-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
|
|
12667
|
-
--base-tooltip-bg: #
|
|
12777
|
+
--base-tooltip-bg: #333333;
|
|
12668
12778
|
--base-tooltip-text-color: #ffffff;
|
|
12669
|
-
--base-
|
|
12779
|
+
--base-success-color: #059669;
|
|
12780
|
+
--base-success-color-hover: #047857;
|
|
12781
|
+
--base-success-bg-light: rgba(5, 150, 105, 0.15);
|
|
12782
|
+
--base-success-bg-subtle: rgba(5, 150, 105, 0.08);
|
|
12783
|
+
--base-success-border: rgba(5, 150, 105, 0.2);
|
|
12784
|
+
--base-success-text: #34d399;
|
|
12785
|
+
--base-success-text-light: #d4edda;
|
|
12786
|
+
--base-text-on-success: #ffffff;
|
|
12787
|
+
--base-danger-color: #dc2626;
|
|
12788
|
+
--base-danger-color-hover: #b91c1c;
|
|
12789
|
+
--base-danger-bg-light: rgba(220, 38, 38, 0.15);
|
|
12790
|
+
--base-danger-bg-subtle: rgba(220, 38, 38, 0.08);
|
|
12791
|
+
--base-danger-border: rgba(220, 38, 38, 0.2);
|
|
12792
|
+
--base-danger-text: #f87171;
|
|
12793
|
+
--base-danger-text-light: #f8d7da;
|
|
12794
|
+
--base-text-on-danger: #ffffff;
|
|
12795
|
+
--base-warning-color: #d97706;
|
|
12796
|
+
--base-warning-color-hover: #b45309;
|
|
12797
|
+
--base-warning-bg-light: rgba(217, 119, 6, 0.15);
|
|
12798
|
+
--base-warning-bg-subtle: rgba(217, 119, 6, 0.08);
|
|
12799
|
+
--base-warning-border: rgba(217, 119, 6, 0.2);
|
|
12800
|
+
--base-warning-text: #fbbf24;
|
|
12801
|
+
--base-warning-text-light: #fff3cd;
|
|
12802
|
+
--base-text-on-warning: #ffffff;
|
|
12803
|
+
--base-info-color: #0891b2;
|
|
12804
|
+
--base-info-color-hover: #0e7490;
|
|
12805
|
+
--base-info-bg-light: rgba(8, 145, 178, 0.15);
|
|
12806
|
+
--base-info-bg-subtle: rgba(8, 145, 178, 0.08);
|
|
12807
|
+
--base-info-border: rgba(8, 145, 178, 0.2);
|
|
12808
|
+
--base-info-text: #22d3ee;
|
|
12809
|
+
--base-info-text-light: #d1ecf1;
|
|
12810
|
+
--base-text-on-info: #ffffff;
|
|
12811
|
+
--base-hover-overlay: rgba(0, 0, 0, 0.04);
|
|
12812
|
+
--base-active-overlay: rgba(0, 0, 0, 0.08);
|
|
12813
|
+
--base-focus-ring-color: rgba(77, 171, 247, 0.25);
|
|
12814
|
+
--base-focus-ring-width: 3px;
|
|
12815
|
+
--base-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
|
|
12816
|
+
--base-font-family-mono: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
|
|
12670
12817
|
--base-font-size-2xs: 1;
|
|
12671
12818
|
--base-font-size-xs: 1.2;
|
|
12672
12819
|
--base-font-size-sm: 1.4;
|
|
@@ -12677,14 +12824,15 @@ html.font-size-4xl {
|
|
|
12677
12824
|
--base-font-weight-normal: 400;
|
|
12678
12825
|
--base-font-weight-medium: 500;
|
|
12679
12826
|
--base-font-weight-semibold: 600;
|
|
12680
|
-
--base-
|
|
12827
|
+
--base-font-weight-bold: 700;
|
|
12828
|
+
--base-line-height-tight: 1.25;
|
|
12681
12829
|
--base-line-height-normal: 1.5;
|
|
12682
|
-
--base-line-height-relaxed: 1.
|
|
12830
|
+
--base-line-height-relaxed: 1.75;
|
|
12683
12831
|
--base-border-radius-sm: 0.4;
|
|
12684
12832
|
--base-border-radius-md: 0.6;
|
|
12685
12833
|
--base-border-radius-lg: 0.8;
|
|
12686
12834
|
--pa-primary-bg: #1a1a1a;
|
|
12687
|
-
--pa-bg-secondary: #
|
|
12835
|
+
--pa-bg-secondary: #1a1a1a;
|
|
12688
12836
|
--pa-content-bg: #1a1a1a;
|
|
12689
12837
|
--pa-text-primary: #ffffff;
|
|
12690
12838
|
--pa-text-secondary: #b8b8b8;
|
|
@@ -12693,18 +12841,18 @@ html.font-size-4xl {
|
|
|
12693
12841
|
--pa-accent-light: rgba(77, 171, 247, 0.08);
|
|
12694
12842
|
--pa-border-color: #404040;
|
|
12695
12843
|
--pa-header-bg: #2d2d2d;
|
|
12696
|
-
--pa-header-border-color: #
|
|
12697
|
-
--pa-header-text: #
|
|
12698
|
-
--pa-header-text-secondary: #
|
|
12844
|
+
--pa-header-border-color: #404040;
|
|
12845
|
+
--pa-header-text: #ffffff;
|
|
12846
|
+
--pa-header-text-secondary: #b8b8b8;
|
|
12699
12847
|
--pa-header-profile-name-color: #ffffff;
|
|
12700
12848
|
--pa-sidebar-bg: #242424;
|
|
12701
|
-
--pa-sidebar-text: #
|
|
12702
|
-
--pa-sidebar-text-secondary: #
|
|
12849
|
+
--pa-sidebar-text: #ffffff;
|
|
12850
|
+
--pa-sidebar-text-secondary: #b8b8b8;
|
|
12703
12851
|
--pa-sidebar-submenu-bg: #333333;
|
|
12704
12852
|
--pa-sidebar-submenu-hover-bg: #353535;
|
|
12705
12853
|
--pa-sidebar-submenu-active-bg: #404040;
|
|
12706
12854
|
--pa-footer-bg: #2d2d2d;
|
|
12707
|
-
--pa-footer-border-color: #
|
|
12855
|
+
--pa-footer-border-color: #404040;
|
|
12708
12856
|
--pa-btn-primary-bg: #2563eb;
|
|
12709
12857
|
--pa-btn-primary-bg-hover: #1d4ed8;
|
|
12710
12858
|
--pa-btn-primary-bg-light: rgba(77, 171, 247, 0.08);
|
|
@@ -12719,7 +12867,7 @@ html.font-size-4xl {
|
|
|
12719
12867
|
--pa-btn-danger-bg-hover: #b91c1c;
|
|
12720
12868
|
--pa-btn-danger-text: #ffffff;
|
|
12721
12869
|
--pa-btn-warning-bg: #d97706;
|
|
12722
|
-
--pa-btn-warning-bg-hover: #
|
|
12870
|
+
--pa-btn-warning-bg-hover: #b45309;
|
|
12723
12871
|
--pa-btn-warning-text: #ffffff;
|
|
12724
12872
|
--pa-btn-info-bg: #0891b2;
|
|
12725
12873
|
--pa-btn-info-bg-hover: #0e7490;
|
|
@@ -12731,32 +12879,32 @@ html.font-size-4xl {
|
|
|
12731
12879
|
--pa-btn-dark-bg-hover: #030712;
|
|
12732
12880
|
--pa-btn-dark-text: #ffffff;
|
|
12733
12881
|
--pa-success-bg: #059669;
|
|
12734
|
-
--pa-success-bg-hover: #
|
|
12882
|
+
--pa-success-bg-hover: #047857;
|
|
12735
12883
|
--pa-success-bg-light: rgba(5, 150, 105, 0.15);
|
|
12736
|
-
--pa-success-bg-subtle: rgba(
|
|
12737
|
-
--pa-success-border: rgba(
|
|
12738
|
-
--pa-success-text: #
|
|
12884
|
+
--pa-success-bg-subtle: rgba(5, 150, 105, 0.08);
|
|
12885
|
+
--pa-success-border: rgba(5, 150, 105, 0.2);
|
|
12886
|
+
--pa-success-text: #34d399;
|
|
12739
12887
|
--pa-success-text-light: #d4edda;
|
|
12740
12888
|
--pa-danger-bg: #dc2626;
|
|
12741
|
-
--pa-danger-bg-hover: #
|
|
12889
|
+
--pa-danger-bg-hover: #b91c1c;
|
|
12742
12890
|
--pa-danger-bg-light: rgba(220, 38, 38, 0.15);
|
|
12743
|
-
--pa-danger-bg-subtle: rgba(220,
|
|
12744
|
-
--pa-danger-border: rgba(220,
|
|
12745
|
-
--pa-danger-text: #
|
|
12891
|
+
--pa-danger-bg-subtle: rgba(220, 38, 38, 0.08);
|
|
12892
|
+
--pa-danger-border: rgba(220, 38, 38, 0.2);
|
|
12893
|
+
--pa-danger-text: #f87171;
|
|
12746
12894
|
--pa-danger-text-light: #f8d7da;
|
|
12747
12895
|
--pa-warning-bg: #d97706;
|
|
12748
|
-
--pa-warning-bg-hover: #
|
|
12896
|
+
--pa-warning-bg-hover: #b45309;
|
|
12749
12897
|
--pa-warning-bg-light: rgba(217, 119, 6, 0.15);
|
|
12750
|
-
--pa-warning-bg-subtle: rgba(
|
|
12751
|
-
--pa-warning-border: rgba(
|
|
12752
|
-
--pa-warning-text: #
|
|
12898
|
+
--pa-warning-bg-subtle: rgba(217, 119, 6, 0.08);
|
|
12899
|
+
--pa-warning-border: rgba(217, 119, 6, 0.2);
|
|
12900
|
+
--pa-warning-text: #fbbf24;
|
|
12753
12901
|
--pa-warning-text-light: #fff3cd;
|
|
12754
|
-
--pa-info-bg: #
|
|
12755
|
-
--pa-info-bg-hover: #
|
|
12756
|
-
--pa-info-bg-light: rgba(
|
|
12757
|
-
--pa-info-bg-subtle: rgba(
|
|
12758
|
-
--pa-info-border: rgba(
|
|
12759
|
-
--pa-info-text: #
|
|
12902
|
+
--pa-info-bg: #0891b2;
|
|
12903
|
+
--pa-info-bg-hover: #0e7490;
|
|
12904
|
+
--pa-info-bg-light: rgba(8, 145, 178, 0.15);
|
|
12905
|
+
--pa-info-bg-subtle: rgba(8, 145, 178, 0.08);
|
|
12906
|
+
--pa-info-border: rgba(8, 145, 178, 0.2);
|
|
12907
|
+
--pa-info-text: #22d3ee;
|
|
12760
12908
|
--pa-info-text-light: #d1ecf1;
|
|
12761
12909
|
--pa-card-bg: #2a2a2a;
|
|
12762
12910
|
--pa-card-header-bg: #333333;
|
|
@@ -12768,69 +12916,69 @@ html.font-size-4xl {
|
|
|
12768
12916
|
--pa-input-focus-border-color: #4dabf7;
|
|
12769
12917
|
--pa-select-focus-border-color: #4dabf7;
|
|
12770
12918
|
--pa-textarea-focus-border-color: #4dabf7;
|
|
12771
|
-
--pa-checkbox-border-color: #
|
|
12919
|
+
--pa-checkbox-border-color: #404040;
|
|
12772
12920
|
--pa-checkbox-border-color-hover: #4dabf7;
|
|
12773
12921
|
--pa-checkbox-border-color-checked: #4dabf7;
|
|
12774
|
-
--pa-checkbox-bg: #
|
|
12922
|
+
--pa-checkbox-bg: #2a2a2a;
|
|
12775
12923
|
--pa-checkbox-bg-checked: #4dabf7;
|
|
12776
12924
|
--pa-checkbox-bg-indeterminate: #4dabf7;
|
|
12777
12925
|
--pa-checkbox-checkmark-color: white;
|
|
12778
12926
|
--pa-checkbox-focus-shadow: 0 0 0 2px rgba(77, 171, 247, 0.25);
|
|
12779
|
-
--pa-input-group-prepend-bg: #
|
|
12780
|
-
--pa-input-group-prepend-text: #
|
|
12781
|
-
--pa-input-group-append-bg: #
|
|
12782
|
-
--pa-input-group-append-text: #
|
|
12927
|
+
--pa-input-group-prepend-bg: #1a1a1a;
|
|
12928
|
+
--pa-input-group-prepend-text: #b8b8b8;
|
|
12929
|
+
--pa-input-group-append-bg: #1a1a1a;
|
|
12930
|
+
--pa-input-group-append-text: #b8b8b8;
|
|
12783
12931
|
--pa-table-bg: #2a2a2a;
|
|
12784
12932
|
--pa-table-header-bg: #333333;
|
|
12785
12933
|
--pa-table-stripe: #333333;
|
|
12786
12934
|
--pa-table-hover-bg: #353535;
|
|
12787
|
-
--pa-table-hover-accent-color: #
|
|
12935
|
+
--pa-table-hover-accent-color: #4dabf7;
|
|
12788
12936
|
--pa-modal-overlay-bg: rgba(0, 0, 0, 0.7);
|
|
12789
12937
|
--pa-modal-content-bg: #2a2a2a;
|
|
12790
|
-
--pa-alert-success-bg: rgba(
|
|
12791
|
-
--pa-alert-success-border: rgba(
|
|
12792
|
-
--pa-alert-success-text: #
|
|
12793
|
-
--pa-alert-danger-bg: rgba(220,
|
|
12794
|
-
--pa-alert-danger-border: rgba(220,
|
|
12795
|
-
--pa-alert-danger-text: #
|
|
12796
|
-
--pa-alert-warning-bg: rgba(
|
|
12797
|
-
--pa-alert-warning-border: rgba(
|
|
12798
|
-
--pa-alert-warning-text: #
|
|
12799
|
-
--pa-alert-info-bg: rgba(
|
|
12800
|
-
--pa-alert-info-border: rgba(
|
|
12801
|
-
--pa-alert-info-text: #
|
|
12938
|
+
--pa-alert-success-bg: rgba(5, 150, 105, 0.08);
|
|
12939
|
+
--pa-alert-success-border: rgba(5, 150, 105, 0.2);
|
|
12940
|
+
--pa-alert-success-text: #059669;
|
|
12941
|
+
--pa-alert-danger-bg: rgba(220, 38, 38, 0.08);
|
|
12942
|
+
--pa-alert-danger-border: rgba(220, 38, 38, 0.2);
|
|
12943
|
+
--pa-alert-danger-text: #dc2626;
|
|
12944
|
+
--pa-alert-warning-bg: rgba(217, 119, 6, 0.08);
|
|
12945
|
+
--pa-alert-warning-border: rgba(217, 119, 6, 0.2);
|
|
12946
|
+
--pa-alert-warning-text: #d97706;
|
|
12947
|
+
--pa-alert-info-bg: rgba(8, 145, 178, 0.08);
|
|
12948
|
+
--pa-alert-info-border: rgba(8, 145, 178, 0.2);
|
|
12949
|
+
--pa-alert-info-text: #0891b2;
|
|
12802
12950
|
--pa-badge-success-bg: #d4edda;
|
|
12803
|
-
--pa-badge-success-text: #
|
|
12951
|
+
--pa-badge-success-text: #34d399;
|
|
12804
12952
|
--pa-badge-warning-bg: #fff3cd;
|
|
12805
|
-
--pa-badge-warning-text: #
|
|
12953
|
+
--pa-badge-warning-text: #fbbf24;
|
|
12806
12954
|
--pa-badge-info-bg: #d1ecf1;
|
|
12807
|
-
--pa-badge-info-text: #
|
|
12955
|
+
--pa-badge-info-text: #22d3ee;
|
|
12808
12956
|
--pa-badge-danger-bg: #f8d7da;
|
|
12809
|
-
--pa-badge-danger-text: #
|
|
12957
|
+
--pa-badge-danger-text: #f87171;
|
|
12810
12958
|
--pa-composite-badge-icon-bg: #6c757d;
|
|
12811
|
-
--pa-composite-badge-label-bg: #
|
|
12812
|
-
--pa-composite-badge-label-text: #
|
|
12813
|
-
--pa-composite-badge-label-hover-bg: #
|
|
12814
|
-
--pa-tooltip-bg: #
|
|
12959
|
+
--pa-composite-badge-label-bg: #404040;
|
|
12960
|
+
--pa-composite-badge-label-text: #ffffff;
|
|
12961
|
+
--pa-composite-badge-label-hover-bg: #404040;
|
|
12962
|
+
--pa-tooltip-bg: #333333;
|
|
12815
12963
|
--pa-tooltip-text: #ffffff;
|
|
12816
|
-
--pa-popover-content-bg: #
|
|
12964
|
+
--pa-popover-content-bg: #2a2a2a;
|
|
12817
12965
|
--pa-popover-text-light: #ffffff;
|
|
12818
12966
|
--pa-popover-text-dark: #000000;
|
|
12819
12967
|
--pa-loader-overlay-bg: rgba(255, 255, 255, 0.8);
|
|
12820
12968
|
--pa-profile-overlay-bg: rgba(0, 0, 0, 0.3);
|
|
12821
12969
|
--pa-command-palette-backdrop-bg: rgba(0, 0, 0, 0.5);
|
|
12822
|
-
--pa-command-palette-item-hover-bg: rgba(
|
|
12823
|
-
--pa-command-palette-item-active-bg: rgba(
|
|
12824
|
-
--pa-command-palette-highlight-bg: rgba(
|
|
12825
|
-
--pa-command-palette-highlight-text: #
|
|
12826
|
-
--pa-multiselect-dropdown-bg: #
|
|
12827
|
-
--pa-multiselect-dropdown-border: #
|
|
12828
|
-
--pa-multiselect-dropdown-text: #
|
|
12829
|
-
--pa-multiselect-hint-bg: #
|
|
12830
|
-
--pa-multiselect-hint-border: #
|
|
12831
|
-
--pa-multiselect-option-hover-bg: #
|
|
12832
|
-
--pa-multiselect-pill-bg: rgba(
|
|
12833
|
-
--pa-multiselect-pill-border: #
|
|
12970
|
+
--pa-command-palette-item-hover-bg: rgba(77, 171, 247, 0.05);
|
|
12971
|
+
--pa-command-palette-item-active-bg: rgba(77, 171, 247, 0.1);
|
|
12972
|
+
--pa-command-palette-highlight-bg: rgba(77, 171, 247, 0.2);
|
|
12973
|
+
--pa-command-palette-highlight-text: #4dabf7;
|
|
12974
|
+
--pa-multiselect-dropdown-bg: #2a2a2a;
|
|
12975
|
+
--pa-multiselect-dropdown-border: #404040;
|
|
12976
|
+
--pa-multiselect-dropdown-text: #ffffff;
|
|
12977
|
+
--pa-multiselect-hint-bg: #1a1a1a;
|
|
12978
|
+
--pa-multiselect-hint-border: #404040;
|
|
12979
|
+
--pa-multiselect-option-hover-bg: #1a1a1a;
|
|
12980
|
+
--pa-multiselect-pill-bg: rgba(77, 171, 247, 0.08);
|
|
12981
|
+
--pa-multiselect-pill-border: #4dabf7;
|
|
12834
12982
|
--drp-dropdown-bg: #2a2a2a;
|
|
12835
12983
|
--drp-border-color: #404040;
|
|
12836
12984
|
--drp-primary-bg: #1a1a1a;
|
|
@@ -12932,19 +13080,19 @@ html.font-size-4xl {
|
|
|
12932
13080
|
--pa-danger-bg-light: rgba(239, 68, 68, 0.1);
|
|
12933
13081
|
--pa-info-bg: #0ea5e9;
|
|
12934
13082
|
--pa-info-bg-light: rgba(14, 165, 233, 0.1);
|
|
12935
|
-
--base-
|
|
12936
|
-
--base-
|
|
13083
|
+
--base-surface-1: #ffffff;
|
|
13084
|
+
--base-surface-2: #f8fafc;
|
|
13085
|
+
--base-surface-3: #f1f5f9;
|
|
12937
13086
|
--base-text-color-1: #1e293b;
|
|
12938
13087
|
--base-text-color-2: #64748b;
|
|
13088
|
+
--base-text-color-3: #94a3b8;
|
|
13089
|
+
--base-text-color-4: #cbd5e1;
|
|
12939
13090
|
--base-accent-color: #4dabf7;
|
|
12940
|
-
--base-accent-color-hover:
|
|
12941
|
-
--base-accent-color-active:
|
|
13091
|
+
--base-accent-color-hover: rgb(28.1935483871, 147.9677419355, 244.8064516129);
|
|
13092
|
+
--base-accent-color-active: rgb(10.6451612903, 135.7258064516, 236.8548387097);
|
|
12942
13093
|
--base-accent-color-light: rgba(77, 171, 247, 0.1);
|
|
12943
13094
|
--base-accent-color-light-hover: rgba(77, 171, 247, 0.15);
|
|
12944
|
-
--base-text-color-3: #94a3b8;
|
|
12945
|
-
--base-text-color-4: #cbd5e1;
|
|
12946
13095
|
--base-border-color: #e2e8f0;
|
|
12947
|
-
--base-border: 1px solid #e2e8f0;
|
|
12948
13096
|
--base-input-bg: #ffffff;
|
|
12949
13097
|
--base-input-color: #1e293b;
|
|
12950
13098
|
--base-input-border: 1px solid #e2e8f0;
|
|
@@ -12952,7 +13100,7 @@ html.font-size-4xl {
|
|
|
12952
13100
|
--base-input-border-focus: 1px solid #4dabf7;
|
|
12953
13101
|
--base-input-placeholder-color: #94a3b8;
|
|
12954
13102
|
--base-dropdown-bg: #ffffff;
|
|
12955
|
-
--base-dropdown-border:
|
|
13103
|
+
--base-dropdown-border: #e2e8f0;
|
|
12956
13104
|
--base-dropdown-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
|
|
12957
13105
|
--base-tooltip-bg: #1e293b;
|
|
12958
13106
|
--base-tooltip-text-color: #ffffff;
|
|
@@ -13029,8 +13177,8 @@ html.font-size-4xl {
|
|
|
13029
13177
|
--pa-btn-primary-bg-hover: #1e3a8a;
|
|
13030
13178
|
--page-loader-spinner-accent: #3b82f6;
|
|
13031
13179
|
--base-accent-color: #3b82f6;
|
|
13032
|
-
--base-
|
|
13033
|
-
--base-
|
|
13180
|
+
--base-surface-1: #1e293b;
|
|
13181
|
+
--base-surface-2: #0f172a;
|
|
13034
13182
|
--base-border-color: #334155;
|
|
13035
13183
|
--base-input-bg: #0f172a;
|
|
13036
13184
|
--base-dropdown-bg: #1e293b;
|
|
@@ -13068,8 +13216,8 @@ html.font-size-4xl {
|
|
|
13068
13216
|
--pa-btn-primary-bg-hover: #166534;
|
|
13069
13217
|
--page-loader-spinner-accent: #22c55e;
|
|
13070
13218
|
--base-accent-color: #22c55e;
|
|
13071
|
-
--base-
|
|
13072
|
-
--base-
|
|
13219
|
+
--base-surface-1: #1a2e1f;
|
|
13220
|
+
--base-surface-2: #0f1e13;
|
|
13073
13221
|
--base-border-color: #2d5b3a;
|
|
13074
13222
|
--base-input-bg: #0f1e13;
|
|
13075
13223
|
--base-dropdown-bg: #1a2e1f;
|
|
@@ -13107,8 +13255,8 @@ html.font-size-4xl {
|
|
|
13107
13255
|
--pa-btn-primary-bg-hover: #7f1d1d;
|
|
13108
13256
|
--page-loader-spinner-accent: #ef4444;
|
|
13109
13257
|
--base-accent-color: #ef4444;
|
|
13110
|
-
--base-
|
|
13111
|
-
--base-
|
|
13258
|
+
--base-surface-1: #2d1a1a;
|
|
13259
|
+
--base-surface-2: #1f0f0f;
|
|
13112
13260
|
--base-border-color: #5b2d2d;
|
|
13113
13261
|
--base-input-bg: #1f0f0f;
|
|
13114
13262
|
--base-dropdown-bg: #2d1a1a;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/pure-admin-theme-dark",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-rc02",
|
|
4
4
|
"description": "Dark theme for Pure Admin with color variants (blue, green, red) via CSS classes",
|
|
5
5
|
"style": "dist/dark.css",
|
|
6
6
|
"exports": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"author": "KeenMate",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@keenmate/pure-admin-core": "^1.0.0-
|
|
22
|
+
"@keenmate/pure-admin-core": "^1.0.0-rc02"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@keenmate/pure-admin-core": "^1.0.0-
|
|
25
|
+
"@keenmate/pure-admin-core": "^1.0.0-rc02",
|
|
26
26
|
"sass": "^1.70.0"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
package/src/scss/dark.scss
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* Dark Theme for Pure Admin Visual */
|
|
2
2
|
@use 'sass:color';
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
//
|
|
4
|
+
// ============================================================================
|
|
5
|
+
// DARK THEME COLOR PALETTE
|
|
6
|
+
// ============================================================================
|
|
7
7
|
$dark-bg-primary: #1a1a1a;
|
|
8
8
|
$dark-bg-secondary: #2a2a2a;
|
|
9
9
|
$dark-bg-tertiary: #333333;
|
|
@@ -17,67 +17,99 @@ $dark-text-secondary: #b8b8b8;
|
|
|
17
17
|
|
|
18
18
|
$dark-accent: #4dabf7;
|
|
19
19
|
|
|
20
|
-
//
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
$
|
|
27
|
-
$
|
|
28
|
-
$
|
|
29
|
-
$
|
|
30
|
-
$
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
$
|
|
34
|
-
$
|
|
35
|
-
|
|
36
|
-
// Sync base variables with theme colors (for web components)
|
|
37
|
-
// Colors
|
|
38
|
-
$base-accent-color: $accent-color;
|
|
39
|
-
$base-accent-color-hover: color.adjust($base-accent-color, $lightness: 10%);
|
|
40
|
-
$base-accent-color-active: color.adjust($base-accent-color, $lightness: 20%);
|
|
41
|
-
$base-accent-color-light: $accent-light;
|
|
42
|
-
$base-accent-color-light-hover: rgba($base-accent-color, 0.12);
|
|
43
|
-
$base-primary-bg: $dark-bg-secondary;
|
|
44
|
-
$base-primary-bg-hover: $dark-bg-tertiary;
|
|
45
|
-
$base-text-color-1: #ffffff;
|
|
46
|
-
$base-text-color-2: #b8b8b8;
|
|
20
|
+
// ============================================================================
|
|
21
|
+
// BASE VARIABLES - Single Source of Truth
|
|
22
|
+
// ============================================================================
|
|
23
|
+
// All framework variables will derive from these
|
|
24
|
+
|
|
25
|
+
// Accent colors
|
|
26
|
+
$base-accent-color: $dark-accent;
|
|
27
|
+
$base-accent-color-hover: color.adjust($dark-accent, $lightness: 10%);
|
|
28
|
+
$base-accent-color-active: color.adjust($dark-accent, $lightness: 20%);
|
|
29
|
+
$base-accent-color-light: rgba($dark-accent, 0.08);
|
|
30
|
+
$base-accent-color-light-hover: rgba($dark-accent, 0.12);
|
|
31
|
+
|
|
32
|
+
// Text colors (dark theme = light text)
|
|
33
|
+
$base-text-color-1: $dark-text-primary;
|
|
34
|
+
$base-text-color-2: $dark-text-secondary;
|
|
47
35
|
$base-text-color-3: #888888;
|
|
48
36
|
$base-text-color-4: #666666;
|
|
49
|
-
$base-text-on-accent: #ffffff;
|
|
37
|
+
$base-text-color-on-accent: #ffffff;
|
|
38
|
+
|
|
39
|
+
// Surface colors (dark theme = dark surfaces)
|
|
40
|
+
$base-surface-1: $dark-bg-secondary; // Cards, modals
|
|
41
|
+
$base-surface-2: $dark-bg-primary; // Page background
|
|
42
|
+
$base-surface-3: $dark-bg-quaternary; // Dividers
|
|
43
|
+
$base-surface-inverse: $dark-text-primary; // Light elements on dark
|
|
44
|
+
$base-overlay-bg: rgba(0, 0, 0, 0.7);
|
|
45
|
+
$base-shadow-color: rgba(0, 0, 0, 0.4);
|
|
46
|
+
|
|
47
|
+
// Border
|
|
50
48
|
$base-border-color: $dark-bg-quaternary;
|
|
51
49
|
|
|
52
50
|
// Input fields
|
|
53
|
-
$base-input-
|
|
54
|
-
$base-input-color:
|
|
51
|
+
$base-input-bg: $dark-bg-tertiary;
|
|
52
|
+
$base-input-color: $dark-text-primary;
|
|
55
53
|
$base-input-border: 1px solid $dark-bg-quaternary;
|
|
56
|
-
$base-input-border-hover: 1px solid $accent
|
|
57
|
-
$base-input-border-focus: 1px solid $accent
|
|
54
|
+
$base-input-border-hover: 1px solid $dark-accent;
|
|
55
|
+
$base-input-border-focus: 1px solid $dark-accent;
|
|
58
56
|
$base-input-placeholder-color: #666666;
|
|
59
|
-
$base-input-background-disabled: rgba($dark-bg-tertiary, 0.5);
|
|
60
57
|
|
|
61
58
|
// Dropdown/Popover
|
|
62
|
-
$base-dropdown-
|
|
63
|
-
$base-dropdown-border:
|
|
59
|
+
$base-dropdown-bg: $dark-bg-secondary;
|
|
60
|
+
$base-dropdown-border: $dark-bg-quaternary;
|
|
64
61
|
$base-dropdown-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
|
|
65
62
|
|
|
66
63
|
// Tooltip
|
|
67
|
-
$base-tooltip-
|
|
68
|
-
$base-tooltip-text-color:
|
|
64
|
+
$base-tooltip-bg: $dark-bg-tertiary;
|
|
65
|
+
$base-tooltip-text-color: $dark-text-primary;
|
|
66
|
+
|
|
67
|
+
// Contextual colors (adjusted for dark theme visibility)
|
|
68
|
+
$base-success-color: #059669;
|
|
69
|
+
$base-success-color-hover: #047857;
|
|
70
|
+
$base-success-bg-light: rgba(5, 150, 105, 0.15);
|
|
71
|
+
$base-success-text: #34d399;
|
|
72
|
+
$base-text-on-success: #ffffff;
|
|
73
|
+
|
|
74
|
+
$base-danger-color: #dc2626;
|
|
75
|
+
$base-danger-color-hover: #b91c1c;
|
|
76
|
+
$base-danger-bg-light: rgba(220, 38, 38, 0.15);
|
|
77
|
+
$base-danger-text: #f87171;
|
|
78
|
+
$base-text-on-danger: #ffffff;
|
|
79
|
+
|
|
80
|
+
$base-warning-color: #d97706;
|
|
81
|
+
$base-warning-color-hover: #b45309;
|
|
82
|
+
$base-warning-bg-light: rgba(217, 119, 6, 0.15);
|
|
83
|
+
$base-warning-text: #fbbf24;
|
|
84
|
+
$base-text-on-warning: #ffffff;
|
|
85
|
+
|
|
86
|
+
$base-info-color: #0891b2;
|
|
87
|
+
$base-info-color-hover: #0e7490;
|
|
88
|
+
$base-info-bg-light: rgba(8, 145, 178, 0.15);
|
|
89
|
+
$base-info-text: #22d3ee;
|
|
90
|
+
$base-text-on-info: #ffffff;
|
|
91
|
+
|
|
92
|
+
// Interactive states
|
|
93
|
+
$base-focus-ring-color: rgba($dark-accent, 0.25);
|
|
69
94
|
|
|
70
|
-
//
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
95
|
+
// ============================================================================
|
|
96
|
+
// FRAMEWORK VARIABLES - Import and let them derive from base
|
|
97
|
+
// ============================================================================
|
|
98
|
+
@import '@keenmate/pure-admin-core/src/scss/variables/index';
|
|
74
99
|
|
|
75
|
-
//
|
|
76
|
-
$
|
|
77
|
-
$
|
|
78
|
-
$
|
|
79
|
-
$
|
|
80
|
-
$
|
|
100
|
+
// Layout-specific overrides (these are Pure Admin specific)
|
|
101
|
+
$primary-bg: $dark-bg-primary;
|
|
102
|
+
$content-background-color: $dark-bg-primary;
|
|
103
|
+
$header-bg: $dark-bg-header;
|
|
104
|
+
$sidebar-bg: $dark-bg-sidebar;
|
|
105
|
+
$sidebar-submenu-bg: $dark-bg-tertiary;
|
|
106
|
+
$sidebar-submenu-hover-bg: $dark-bg-hover;
|
|
107
|
+
$sidebar-submenu-active-bg: $dark-bg-quaternary;
|
|
108
|
+
$footer-bg: $dark-bg-header;
|
|
109
|
+
$text-primary: $dark-text-primary;
|
|
110
|
+
$text-secondary: $dark-text-secondary;
|
|
111
|
+
$accent-hover: rgba($dark-accent, 0.15);
|
|
112
|
+
$accent-light: rgba($dark-accent, 0.08);
|
|
81
113
|
|
|
82
114
|
// Card colors
|
|
83
115
|
$card-bg: $dark-bg-secondary;
|
|
@@ -87,8 +119,8 @@ $card-tabs-bg: $dark-bg-tertiary;
|
|
|
87
119
|
|
|
88
120
|
// Input colors
|
|
89
121
|
$input-bg: $dark-bg-tertiary;
|
|
90
|
-
$input-border: $border-color;
|
|
91
|
-
$input-text: $text-primary;
|
|
122
|
+
$input-border: $base-border-color;
|
|
123
|
+
$input-text: $dark-text-primary;
|
|
92
124
|
|
|
93
125
|
// Table colors
|
|
94
126
|
$table-bg: $dark-bg-secondary;
|
|
@@ -96,40 +128,45 @@ $table-header-bg: $dark-bg-tertiary;
|
|
|
96
128
|
$table-hover-bg: $dark-bg-hover;
|
|
97
129
|
$table-stripe: $dark-bg-tertiary;
|
|
98
130
|
|
|
99
|
-
// Button colors
|
|
131
|
+
// Button colors (override from base contextual)
|
|
100
132
|
$btn-primary-bg: #2563eb;
|
|
101
133
|
$btn-primary-bg-hover: #1d4ed8;
|
|
102
134
|
$btn-secondary-bg: #374151;
|
|
103
135
|
$btn-secondary-bg-hover: #4b5563;
|
|
104
|
-
$btn-success-bg: #059669;
|
|
105
|
-
$btn-success-bg-hover: #047857;
|
|
106
|
-
$btn-warning-bg: #d97706;
|
|
107
|
-
$btn-warning-text: #ffffff;
|
|
108
|
-
$btn-danger-bg: #dc2626;
|
|
109
|
-
$btn-danger-bg-hover: #b91c1c;
|
|
110
|
-
$btn-info-bg: #0891b2;
|
|
111
|
-
$btn-info-bg-hover: #0e7490;
|
|
112
136
|
$btn-light-bg: #374151;
|
|
113
137
|
$btn-light-text: #f3f4f6;
|
|
114
138
|
$btn-light-bg-hover: #4b5563;
|
|
115
139
|
$btn-dark-bg: #111827;
|
|
116
140
|
$btn-dark-bg-hover: #030712;
|
|
141
|
+
$btn-warning-text: #ffffff;
|
|
117
142
|
|
|
118
|
-
// Validation shadow colors
|
|
119
|
-
$success-bg: $
|
|
120
|
-
$
|
|
121
|
-
$
|
|
122
|
-
$warning-bg-light: rgba(217, 119, 6, 0.15);
|
|
123
|
-
$danger-bg: $btn-danger-bg;
|
|
124
|
-
$danger-bg-light: rgba(220, 38, 38, 0.15);
|
|
143
|
+
// Validation shadow colors
|
|
144
|
+
$success-bg-light: $base-success-bg-light;
|
|
145
|
+
$warning-bg-light: $base-warning-bg-light;
|
|
146
|
+
$danger-bg-light: $base-danger-bg-light;
|
|
125
147
|
|
|
126
148
|
// Modal colors
|
|
127
|
-
$modal-overlay-bg:
|
|
149
|
+
$modal-overlay-bg: $base-overlay-bg;
|
|
128
150
|
$modal-content-bg: $dark-bg-secondary;
|
|
129
151
|
|
|
130
152
|
// Profile name in header
|
|
131
|
-
$header-profile-name-color: #ffffff;
|
|
153
|
+
$header-profile-name-color: #ffffff;
|
|
154
|
+
|
|
155
|
+
// Form focus colors
|
|
156
|
+
$input-focus-border-color: $base-accent-color;
|
|
157
|
+
$select-focus-border-color: $base-accent-color;
|
|
158
|
+
$textarea-focus-border-color: $base-accent-color;
|
|
159
|
+
|
|
160
|
+
// Checkbox colors
|
|
161
|
+
$checkbox-border-color-hover: $base-accent-color;
|
|
162
|
+
$checkbox-border-color-checked: $base-accent-color;
|
|
163
|
+
$checkbox-bg-checked: $base-accent-color;
|
|
164
|
+
$checkbox-bg-indeterminate: $base-accent-color;
|
|
165
|
+
$checkbox-focus-shadow: 0 0 0 2px $base-focus-ring-color;
|
|
132
166
|
|
|
167
|
+
// ============================================================================
|
|
168
|
+
// CORE IMPORTS
|
|
169
|
+
// ============================================================================
|
|
133
170
|
@import '@keenmate/pure-admin-core/src/scss/core';
|
|
134
171
|
@import '@keenmate/pure-admin-core/src/scss/utilities';
|
|
135
172
|
@import '@keenmate/pure-admin-core/src/scss/base-css-variables';
|
|
@@ -302,19 +339,19 @@ $header-profile-name-color: #ffffff; // White text on dark header
|
|
|
302
339
|
--pa-info-bg-light: rgba(14, 165, 233, 0.1);
|
|
303
340
|
|
|
304
341
|
// Base variables for web components (light mode)
|
|
305
|
-
--base-
|
|
306
|
-
--base-
|
|
342
|
+
--base-surface-1: #{$light-card};
|
|
343
|
+
--base-surface-2: #{$light-bg};
|
|
344
|
+
--base-surface-3: #{$light-surface};
|
|
307
345
|
--base-text-color-1: #{$light-text};
|
|
308
346
|
--base-text-color-2: #{$light-text-secondary};
|
|
347
|
+
--base-text-color-3: #94a3b8;
|
|
348
|
+
--base-text-color-4: #cbd5e1;
|
|
309
349
|
--base-accent-color: #{$dark-accent};
|
|
310
|
-
--base-accent-color-hover: color.adjust($dark-accent, $lightness: -10%);
|
|
311
|
-
--base-accent-color-active: color.adjust($dark-accent, $lightness: -15%);
|
|
350
|
+
--base-accent-color-hover: #{color.adjust($dark-accent, $lightness: -10%)};
|
|
351
|
+
--base-accent-color-active: #{color.adjust($dark-accent, $lightness: -15%)};
|
|
312
352
|
--base-accent-color-light: rgba(77, 171, 247, 0.1);
|
|
313
353
|
--base-accent-color-light-hover: rgba(77, 171, 247, 0.15);
|
|
314
|
-
--base-text-color-3: #94a3b8;
|
|
315
|
-
--base-text-color-4: #cbd5e1;
|
|
316
354
|
--base-border-color: #{$light-border};
|
|
317
|
-
--base-border: 1px solid #{$light-border};
|
|
318
355
|
--base-input-bg: #{$light-card};
|
|
319
356
|
--base-input-color: #{$light-text};
|
|
320
357
|
--base-input-border: 1px solid #{$light-border};
|
|
@@ -322,7 +359,7 @@ $header-profile-name-color: #ffffff; // White text on dark header
|
|
|
322
359
|
--base-input-border-focus: 1px solid #{$dark-accent};
|
|
323
360
|
--base-input-placeholder-color: #94a3b8;
|
|
324
361
|
--base-dropdown-bg: #{$light-card};
|
|
325
|
-
--base-dropdown-border:
|
|
362
|
+
--base-dropdown-border: #{$light-border};
|
|
326
363
|
--base-dropdown-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
|
|
327
364
|
--base-tooltip-bg: #{$light-text};
|
|
328
365
|
--base-tooltip-text-color: #ffffff;
|
|
@@ -428,8 +465,8 @@ $header-profile-name-color: #ffffff; // White text on dark header
|
|
|
428
465
|
--page-loader-spinner-accent: #{$blue-accent};
|
|
429
466
|
|
|
430
467
|
--base-accent-color: #{$blue-accent};
|
|
431
|
-
--base-
|
|
432
|
-
--base-
|
|
468
|
+
--base-surface-1: #{$blue-card};
|
|
469
|
+
--base-surface-2: #{$blue-bg};
|
|
433
470
|
--base-border-color: #{$blue-surface};
|
|
434
471
|
--base-input-bg: #{$blue-bg};
|
|
435
472
|
--base-dropdown-bg: #{$blue-card};
|
|
@@ -484,8 +521,8 @@ $header-profile-name-color: #ffffff; // White text on dark header
|
|
|
484
521
|
--page-loader-spinner-accent: #{$green-accent};
|
|
485
522
|
|
|
486
523
|
--base-accent-color: #{$green-accent};
|
|
487
|
-
--base-
|
|
488
|
-
--base-
|
|
524
|
+
--base-surface-1: #{$green-card};
|
|
525
|
+
--base-surface-2: #{$green-bg};
|
|
489
526
|
--base-border-color: #{$green-surface};
|
|
490
527
|
--base-input-bg: #{$green-bg};
|
|
491
528
|
--base-dropdown-bg: #{$green-card};
|
|
@@ -540,9 +577,9 @@ $header-profile-name-color: #ffffff; // White text on dark header
|
|
|
540
577
|
--page-loader-spinner-accent: #{$red-accent};
|
|
541
578
|
|
|
542
579
|
--base-accent-color: #{$red-accent};
|
|
543
|
-
--base-
|
|
544
|
-
--base-
|
|
580
|
+
--base-surface-1: #{$red-card};
|
|
581
|
+
--base-surface-2: #{$red-bg};
|
|
545
582
|
--base-border-color: #{$red-surface};
|
|
546
583
|
--base-input-bg: #{$red-bg};
|
|
547
584
|
--base-dropdown-bg: #{$red-card};
|
|
548
|
-
}
|
|
585
|
+
}
|