@bagelink/vue 1.15.80 → 1.15.86

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.
Files changed (54) hide show
  1. package/dist/components/Alert.vue.d.ts +6 -1
  2. package/dist/components/Alert.vue.d.ts.map +1 -1
  3. package/dist/components/Avatar.vue.d.ts +3 -1
  4. package/dist/components/Avatar.vue.d.ts.map +1 -1
  5. package/dist/components/Badge.vue.d.ts +4 -0
  6. package/dist/components/Badge.vue.d.ts.map +1 -1
  7. package/dist/components/Card.vue.d.ts +8 -0
  8. package/dist/components/Card.vue.d.ts.map +1 -1
  9. package/dist/components/EmptyState.vue.d.ts.map +1 -1
  10. package/dist/components/Image.vue.d.ts.map +1 -1
  11. package/dist/components/calendar/CalendarPopover.vue.d.ts +18 -0
  12. package/dist/components/calendar/CalendarPopover.vue.d.ts.map +1 -1
  13. package/dist/components/form/inputs/ArrayInput.vue.d.ts.map +1 -1
  14. package/dist/components/form/inputs/RangeInput.vue.d.ts.map +1 -1
  15. package/dist/components/form/inputs/RichText/index.vue.d.ts.map +1 -1
  16. package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
  17. package/dist/components/index.d.ts +2 -0
  18. package/dist/components/index.d.ts.map +1 -1
  19. package/dist/components/kanban/KanbanBoard.vue.d.ts +42 -0
  20. package/dist/components/kanban/KanbanBoard.vue.d.ts.map +1 -0
  21. package/dist/components/kanban/kanbanTypes.d.ts +64 -0
  22. package/dist/components/kanban/kanbanTypes.d.ts.map +1 -0
  23. package/dist/composables/useGradientVariant.d.ts.map +1 -1
  24. package/dist/index.cjs +165 -138
  25. package/dist/index.mjs +35455 -41290
  26. package/dist/style.css +1 -2
  27. package/package.json +1 -1
  28. package/src/components/Alert.vue +40 -9
  29. package/src/components/Avatar.vue +8 -5
  30. package/src/components/Badge.vue +30 -0
  31. package/src/components/Card.vue +22 -2
  32. package/src/components/Dropdown.vue +1 -1
  33. package/src/components/EmptyState.vue +5 -1
  34. package/src/components/Image.vue +18 -4
  35. package/src/components/form/inputs/ArrayInput.vue +2 -2
  36. package/src/components/form/inputs/RangeInput.vue +0 -2
  37. package/src/components/form/inputs/RichText/components/TableGridSelector.vue +1 -1
  38. package/src/components/form/inputs/RichText/editor.css +14 -8
  39. package/src/components/form/inputs/RichText/index.vue +1 -1
  40. package/src/components/form/inputs/TextInput.vue +6 -2
  41. package/src/components/form/inputs/Upload/upload.css +7 -1
  42. package/src/components/index.ts +2 -0
  43. package/src/components/kanban/KanbanBoard.vue +231 -0
  44. package/src/components/kanban/kanbanTypes.ts +72 -0
  45. package/src/composables/useGradientVariant.ts +20 -3
  46. package/src/styles/appearance.css +108 -0
  47. package/src/styles/base-colors.css +830 -1
  48. package/src/styles/buttons.css +44 -2
  49. package/src/styles/color-variants.css +13 -0
  50. package/src/styles/colors.css +1115 -1
  51. package/src/styles/mobileColors.css +1156 -0
  52. package/src/styles/motion.css +107 -19
  53. package/src/styles/theme.css +84 -1
  54. package/vite.config.ts +2 -2
@@ -4666,4 +4666,1160 @@
4666
4666
  .m_alpha-95 {
4667
4667
  background-color: color-mix(in srgb, var(--alpha-color, var(--bgl-primary)) 95%, transparent) !important;
4668
4668
  }
4669
+
4670
+ /* New role colors: secondary / tertiary / quaternary */
4671
+ /* Secondary */
4672
+ .m_bg-secondary {
4673
+ background: var(--bgl-secondary) !important;
4674
+ --alpha-color: var(--bgl-secondary);
4675
+ }
4676
+
4677
+ .m_color-secondary {
4678
+ color: var(--bgl-secondary) !important;
4679
+ }
4680
+
4681
+ .m_bg-input-secondary input,
4682
+ .m_bg-input-secondary textarea,
4683
+ .m_bg-input-secondary .selectinput-btn {
4684
+ background: var(--bgl-secondary) !important;
4685
+ --alpha-color: var(--bgl-secondary);
4686
+ }
4687
+
4688
+ .m_border-secondary {
4689
+ border-color: var(--bgl-secondary) !important;
4690
+ }
4691
+
4692
+ .m_color-input-secondary input {
4693
+ color: var(--bgl-secondary) !important;
4694
+ }
4695
+
4696
+ .m_bg-secondary-light {
4697
+ background: var(--bgl-secondary-light) !important;
4698
+ --alpha-color: var(--bgl-secondary-light);
4699
+ }
4700
+
4701
+ .m_color-secondary-light {
4702
+ color: var(--bgl-secondary-light) !important;
4703
+ }
4704
+
4705
+ .m_bg-input-secondary-light input,
4706
+ .m_bg-input-secondary-light textarea,
4707
+ .m_bg-input-secondary-light .selectinput-btn {
4708
+ background: var(--bgl-secondary-light) !important;
4709
+ --alpha-color: var(--bgl-secondary-light);
4710
+ }
4711
+
4712
+ .m_border-secondary-light {
4713
+ border-color: var(--bgl-secondary-light) !important;
4714
+ }
4715
+
4716
+ .m_color-input-secondary-light input {
4717
+ color: var(--bgl-secondary-light) !important;
4718
+ }
4719
+
4720
+ .m_bg-secondary-tint {
4721
+ background: var(--bgl-secondary-tint) !important;
4722
+ --alpha-color: var(--bgl-secondary-tint);
4723
+ }
4724
+
4725
+ .m_color-secondary-tint {
4726
+ color: var(--bgl-secondary-tint) !important;
4727
+ }
4728
+
4729
+ .m_bg-input-secondary-tint input,
4730
+ .m_bg-input-secondary-tint textarea,
4731
+ .m_bg-input-secondary-tint .selectinput-btn {
4732
+ background: var(--bgl-secondary-tint) !important;
4733
+ --alpha-color: var(--bgl-secondary-tint);
4734
+ }
4735
+
4736
+ .m_border-secondary-tint {
4737
+ border-color: var(--bgl-secondary-tint) !important;
4738
+ }
4739
+
4740
+ .m_color-input-secondary-tint input {
4741
+ color: var(--bgl-secondary-tint) !important;
4742
+ }
4743
+
4744
+ .m_bg-secondary-10 {
4745
+ background: var(--bgl-secondary-10) !important;
4746
+ --alpha-color: var(--bgl-secondary-10);
4747
+ }
4748
+
4749
+ .m_color-secondary-10 {
4750
+ color: var(--bgl-secondary-10) !important;
4751
+ }
4752
+
4753
+ .m_bg-input-secondary-10 input,
4754
+ .m_bg-input-secondary-10 textarea,
4755
+ .m_bg-input-secondary-10 .selectinput-btn {
4756
+ background: var(--bgl-secondary-10) !important;
4757
+ --alpha-color: var(--bgl-secondary-10);
4758
+ }
4759
+
4760
+ .m_border-secondary-10 {
4761
+ border-color: var(--bgl-secondary-10) !important;
4762
+ }
4763
+
4764
+ .m_color-input-secondary-10 input {
4765
+ color: var(--bgl-secondary-10) !important;
4766
+ }
4767
+
4768
+ .m_bg-secondary-20 {
4769
+ background: var(--bgl-secondary-20) !important;
4770
+ --alpha-color: var(--bgl-secondary-20);
4771
+ }
4772
+
4773
+ .m_color-secondary-20 {
4774
+ color: var(--bgl-secondary-20) !important;
4775
+ }
4776
+
4777
+ .m_bg-input-secondary-20 input,
4778
+ .m_bg-input-secondary-20 textarea,
4779
+ .m_bg-input-secondary-20 .selectinput-btn {
4780
+ background: var(--bgl-secondary-20) !important;
4781
+ --alpha-color: var(--bgl-secondary-20);
4782
+ }
4783
+
4784
+ .m_border-secondary-20 {
4785
+ border-color: var(--bgl-secondary-20) !important;
4786
+ }
4787
+
4788
+ .m_color-input-secondary-20 input {
4789
+ color: var(--bgl-secondary-20) !important;
4790
+ }
4791
+
4792
+ .m_bg-secondary-30 {
4793
+ background: var(--bgl-secondary-30) !important;
4794
+ --alpha-color: var(--bgl-secondary-30);
4795
+ }
4796
+
4797
+ .m_color-secondary-30 {
4798
+ color: var(--bgl-secondary-30) !important;
4799
+ }
4800
+
4801
+ .m_bg-input-secondary-30 input,
4802
+ .m_bg-input-secondary-30 textarea,
4803
+ .m_bg-input-secondary-30 .selectinput-btn {
4804
+ background: var(--bgl-secondary-30) !important;
4805
+ --alpha-color: var(--bgl-secondary-30);
4806
+ }
4807
+
4808
+ .m_border-secondary-30 {
4809
+ border-color: var(--bgl-secondary-30) !important;
4810
+ }
4811
+
4812
+ .m_color-input-secondary-30 input {
4813
+ color: var(--bgl-secondary-30) !important;
4814
+ }
4815
+
4816
+ .m_bg-secondary-40 {
4817
+ background: var(--bgl-secondary-40) !important;
4818
+ --alpha-color: var(--bgl-secondary-40);
4819
+ }
4820
+
4821
+ .m_color-secondary-40 {
4822
+ color: var(--bgl-secondary-40) !important;
4823
+ }
4824
+
4825
+ .m_bg-input-secondary-40 input,
4826
+ .m_bg-input-secondary-40 textarea,
4827
+ .m_bg-input-secondary-40 .selectinput-btn {
4828
+ background: var(--bgl-secondary-40) !important;
4829
+ --alpha-color: var(--bgl-secondary-40);
4830
+ }
4831
+
4832
+ .m_border-secondary-40 {
4833
+ border-color: var(--bgl-secondary-40) !important;
4834
+ }
4835
+
4836
+ .m_color-input-secondary-40 input {
4837
+ color: var(--bgl-secondary-40) !important;
4838
+ }
4839
+
4840
+ .m_bg-secondary-50 {
4841
+ background: var(--bgl-secondary-50) !important;
4842
+ --alpha-color: var(--bgl-secondary-50);
4843
+ }
4844
+
4845
+ .m_color-secondary-50 {
4846
+ color: var(--bgl-secondary-50) !important;
4847
+ }
4848
+
4849
+ .m_bg-input-secondary-50 input,
4850
+ .m_bg-input-secondary-50 textarea,
4851
+ .m_bg-input-secondary-50 .selectinput-btn {
4852
+ background: var(--bgl-secondary-50) !important;
4853
+ --alpha-color: var(--bgl-secondary-50);
4854
+ }
4855
+
4856
+ .m_border-secondary-50 {
4857
+ border-color: var(--bgl-secondary-50) !important;
4858
+ }
4859
+
4860
+ .m_color-input-secondary-50 input {
4861
+ color: var(--bgl-secondary-50) !important;
4862
+ }
4863
+
4864
+ .m_bg-secondary-60 {
4865
+ background: var(--bgl-secondary-60) !important;
4866
+ --alpha-color: var(--bgl-secondary-60);
4867
+ }
4868
+
4869
+ .m_color-secondary-60 {
4870
+ color: var(--bgl-secondary-60) !important;
4871
+ }
4872
+
4873
+ .m_bg-input-secondary-60 input,
4874
+ .m_bg-input-secondary-60 textarea,
4875
+ .m_bg-input-secondary-60 .selectinput-btn {
4876
+ background: var(--bgl-secondary-60) !important;
4877
+ --alpha-color: var(--bgl-secondary-60);
4878
+ }
4879
+
4880
+ .m_border-secondary-60 {
4881
+ border-color: var(--bgl-secondary-60) !important;
4882
+ }
4883
+
4884
+ .m_color-input-secondary-60 input {
4885
+ color: var(--bgl-secondary-60) !important;
4886
+ }
4887
+
4888
+ .m_bg-secondary-70 {
4889
+ background: var(--bgl-secondary-70) !important;
4890
+ --alpha-color: var(--bgl-secondary-70);
4891
+ }
4892
+
4893
+ .m_color-secondary-70 {
4894
+ color: var(--bgl-secondary-70) !important;
4895
+ }
4896
+
4897
+ .m_bg-input-secondary-70 input,
4898
+ .m_bg-input-secondary-70 textarea,
4899
+ .m_bg-input-secondary-70 .selectinput-btn {
4900
+ background: var(--bgl-secondary-70) !important;
4901
+ --alpha-color: var(--bgl-secondary-70);
4902
+ }
4903
+
4904
+ .m_border-secondary-70 {
4905
+ border-color: var(--bgl-secondary-70) !important;
4906
+ }
4907
+
4908
+ .m_color-input-secondary-70 input {
4909
+ color: var(--bgl-secondary-70) !important;
4910
+ }
4911
+
4912
+ .m_bg-secondary-80 {
4913
+ background: var(--bgl-secondary-80) !important;
4914
+ --alpha-color: var(--bgl-secondary-80);
4915
+ }
4916
+
4917
+ .m_color-secondary-80 {
4918
+ color: var(--bgl-secondary-80) !important;
4919
+ }
4920
+
4921
+ .m_bg-input-secondary-80 input,
4922
+ .m_bg-input-secondary-80 textarea,
4923
+ .m_bg-input-secondary-80 .selectinput-btn {
4924
+ background: var(--bgl-secondary-80) !important;
4925
+ --alpha-color: var(--bgl-secondary-80);
4926
+ }
4927
+
4928
+ .m_border-secondary-80 {
4929
+ border-color: var(--bgl-secondary-80) !important;
4930
+ }
4931
+
4932
+ .m_color-input-secondary-80 input {
4933
+ color: var(--bgl-secondary-80) !important;
4934
+ }
4935
+
4936
+ .m_bg-secondary-90 {
4937
+ background: var(--bgl-secondary-90) !important;
4938
+ --alpha-color: var(--bgl-secondary-90);
4939
+ }
4940
+
4941
+ .m_color-secondary-90 {
4942
+ color: var(--bgl-secondary-90) !important;
4943
+ }
4944
+
4945
+ .m_bg-input-secondary-90 input,
4946
+ .m_bg-input-secondary-90 textarea,
4947
+ .m_bg-input-secondary-90 .selectinput-btn {
4948
+ background: var(--bgl-secondary-90) !important;
4949
+ --alpha-color: var(--bgl-secondary-90);
4950
+ }
4951
+
4952
+ .m_border-secondary-90 {
4953
+ border-color: var(--bgl-secondary-90) !important;
4954
+ }
4955
+
4956
+ .m_color-input-secondary-90 input {
4957
+ color: var(--bgl-secondary-90) !important;
4958
+ }
4959
+
4960
+ .m_bg-secondary-100 {
4961
+ background: var(--bgl-secondary-100) !important;
4962
+ --alpha-color: var(--bgl-secondary-100);
4963
+ }
4964
+
4965
+ .m_color-secondary-100 {
4966
+ color: var(--bgl-secondary-100) !important;
4967
+ }
4968
+
4969
+ .m_bg-input-secondary-100 input,
4970
+ .m_bg-input-secondary-100 textarea,
4971
+ .m_bg-input-secondary-100 .selectinput-btn {
4972
+ background: var(--bgl-secondary-100) !important;
4973
+ --alpha-color: var(--bgl-secondary-100);
4974
+ }
4975
+
4976
+ .m_border-secondary-100 {
4977
+ border-color: var(--bgl-secondary-100) !important;
4978
+ }
4979
+
4980
+ .m_color-input-secondary-100 input {
4981
+ color: var(--bgl-secondary-100) !important;
4982
+ }
4983
+
4984
+ .m_bg-secondary-110 {
4985
+ background: var(--bgl-secondary-110) !important;
4986
+ --alpha-color: var(--bgl-secondary-110);
4987
+ }
4988
+
4989
+ .m_color-secondary-110 {
4990
+ color: var(--bgl-secondary-110) !important;
4991
+ }
4992
+
4993
+ .m_bg-input-secondary-110 input,
4994
+ .m_bg-input-secondary-110 textarea,
4995
+ .m_bg-input-secondary-110 .selectinput-btn {
4996
+ background: var(--bgl-secondary-110) !important;
4997
+ --alpha-color: var(--bgl-secondary-110);
4998
+ }
4999
+
5000
+ .m_border-secondary-110 {
5001
+ border-color: var(--bgl-secondary-110) !important;
5002
+ }
5003
+
5004
+ .m_color-input-secondary-110 input {
5005
+ color: var(--bgl-secondary-110) !important;
5006
+ }
5007
+
5008
+ .m_bg-secondary-120 {
5009
+ background: var(--bgl-secondary-120) !important;
5010
+ --alpha-color: var(--bgl-secondary-120);
5011
+ }
5012
+
5013
+ .m_color-secondary-120 {
5014
+ color: var(--bgl-secondary-120) !important;
5015
+ }
5016
+
5017
+ .m_bg-input-secondary-120 input,
5018
+ .m_bg-input-secondary-120 textarea,
5019
+ .m_bg-input-secondary-120 .selectinput-btn {
5020
+ background: var(--bgl-secondary-120) !important;
5021
+ --alpha-color: var(--bgl-secondary-120);
5022
+ }
5023
+
5024
+ .m_border-secondary-120 {
5025
+ border-color: var(--bgl-secondary-120) !important;
5026
+ }
5027
+
5028
+ .m_color-input-secondary-120 input {
5029
+ color: var(--bgl-secondary-120) !important;
5030
+ }
5031
+
5032
+ .m_bg-secondary-130 {
5033
+ background: var(--bgl-secondary-130) !important;
5034
+ --alpha-color: var(--bgl-secondary-130);
5035
+ }
5036
+
5037
+ .m_color-secondary-130 {
5038
+ color: var(--bgl-secondary-130) !important;
5039
+ }
5040
+
5041
+ .m_bg-input-secondary-130 input,
5042
+ .m_bg-input-secondary-130 textarea,
5043
+ .m_bg-input-secondary-130 .selectinput-btn {
5044
+ background: var(--bgl-secondary-130) !important;
5045
+ --alpha-color: var(--bgl-secondary-130);
5046
+ }
5047
+
5048
+ .m_border-secondary-130 {
5049
+ border-color: var(--bgl-secondary-130) !important;
5050
+ }
5051
+
5052
+ .m_color-input-secondary-130 input {
5053
+ color: var(--bgl-secondary-130) !important;
5054
+ }
5055
+
5056
+ /* Tertiary */
5057
+ .m_bg-tertiary {
5058
+ background: var(--bgl-tertiary) !important;
5059
+ --alpha-color: var(--bgl-tertiary);
5060
+ }
5061
+
5062
+ .m_color-tertiary {
5063
+ color: var(--bgl-tertiary) !important;
5064
+ }
5065
+
5066
+ .m_bg-input-tertiary input,
5067
+ .m_bg-input-tertiary textarea,
5068
+ .m_bg-input-tertiary .selectinput-btn {
5069
+ background: var(--bgl-tertiary) !important;
5070
+ --alpha-color: var(--bgl-tertiary);
5071
+ }
5072
+
5073
+ .m_border-tertiary {
5074
+ border-color: var(--bgl-tertiary) !important;
5075
+ }
5076
+
5077
+ .m_color-input-tertiary input {
5078
+ color: var(--bgl-tertiary) !important;
5079
+ }
5080
+
5081
+ .m_bg-tertiary-light {
5082
+ background: var(--bgl-tertiary-light) !important;
5083
+ --alpha-color: var(--bgl-tertiary-light);
5084
+ }
5085
+
5086
+ .m_color-tertiary-light {
5087
+ color: var(--bgl-tertiary-light) !important;
5088
+ }
5089
+
5090
+ .m_bg-input-tertiary-light input,
5091
+ .m_bg-input-tertiary-light textarea,
5092
+ .m_bg-input-tertiary-light .selectinput-btn {
5093
+ background: var(--bgl-tertiary-light) !important;
5094
+ --alpha-color: var(--bgl-tertiary-light);
5095
+ }
5096
+
5097
+ .m_border-tertiary-light {
5098
+ border-color: var(--bgl-tertiary-light) !important;
5099
+ }
5100
+
5101
+ .m_color-input-tertiary-light input {
5102
+ color: var(--bgl-tertiary-light) !important;
5103
+ }
5104
+
5105
+ .m_bg-tertiary-tint {
5106
+ background: var(--bgl-tertiary-tint) !important;
5107
+ --alpha-color: var(--bgl-tertiary-tint);
5108
+ }
5109
+
5110
+ .m_color-tertiary-tint {
5111
+ color: var(--bgl-tertiary-tint) !important;
5112
+ }
5113
+
5114
+ .m_bg-input-tertiary-tint input,
5115
+ .m_bg-input-tertiary-tint textarea,
5116
+ .m_bg-input-tertiary-tint .selectinput-btn {
5117
+ background: var(--bgl-tertiary-tint) !important;
5118
+ --alpha-color: var(--bgl-tertiary-tint);
5119
+ }
5120
+
5121
+ .m_border-tertiary-tint {
5122
+ border-color: var(--bgl-tertiary-tint) !important;
5123
+ }
5124
+
5125
+ .m_color-input-tertiary-tint input {
5126
+ color: var(--bgl-tertiary-tint) !important;
5127
+ }
5128
+
5129
+ .m_bg-tertiary-10 {
5130
+ background: var(--bgl-tertiary-10) !important;
5131
+ --alpha-color: var(--bgl-tertiary-10);
5132
+ }
5133
+
5134
+ .m_color-tertiary-10 {
5135
+ color: var(--bgl-tertiary-10) !important;
5136
+ }
5137
+
5138
+ .m_bg-input-tertiary-10 input,
5139
+ .m_bg-input-tertiary-10 textarea,
5140
+ .m_bg-input-tertiary-10 .selectinput-btn {
5141
+ background: var(--bgl-tertiary-10) !important;
5142
+ --alpha-color: var(--bgl-tertiary-10);
5143
+ }
5144
+
5145
+ .m_border-tertiary-10 {
5146
+ border-color: var(--bgl-tertiary-10) !important;
5147
+ }
5148
+
5149
+ .m_color-input-tertiary-10 input {
5150
+ color: var(--bgl-tertiary-10) !important;
5151
+ }
5152
+
5153
+ .m_bg-tertiary-20 {
5154
+ background: var(--bgl-tertiary-20) !important;
5155
+ --alpha-color: var(--bgl-tertiary-20);
5156
+ }
5157
+
5158
+ .m_color-tertiary-20 {
5159
+ color: var(--bgl-tertiary-20) !important;
5160
+ }
5161
+
5162
+ .m_bg-input-tertiary-20 input,
5163
+ .m_bg-input-tertiary-20 textarea,
5164
+ .m_bg-input-tertiary-20 .selectinput-btn {
5165
+ background: var(--bgl-tertiary-20) !important;
5166
+ --alpha-color: var(--bgl-tertiary-20);
5167
+ }
5168
+
5169
+ .m_border-tertiary-20 {
5170
+ border-color: var(--bgl-tertiary-20) !important;
5171
+ }
5172
+
5173
+ .m_color-input-tertiary-20 input {
5174
+ color: var(--bgl-tertiary-20) !important;
5175
+ }
5176
+
5177
+ .m_bg-tertiary-30 {
5178
+ background: var(--bgl-tertiary-30) !important;
5179
+ --alpha-color: var(--bgl-tertiary-30);
5180
+ }
5181
+
5182
+ .m_color-tertiary-30 {
5183
+ color: var(--bgl-tertiary-30) !important;
5184
+ }
5185
+
5186
+ .m_bg-input-tertiary-30 input,
5187
+ .m_bg-input-tertiary-30 textarea,
5188
+ .m_bg-input-tertiary-30 .selectinput-btn {
5189
+ background: var(--bgl-tertiary-30) !important;
5190
+ --alpha-color: var(--bgl-tertiary-30);
5191
+ }
5192
+
5193
+ .m_border-tertiary-30 {
5194
+ border-color: var(--bgl-tertiary-30) !important;
5195
+ }
5196
+
5197
+ .m_color-input-tertiary-30 input {
5198
+ color: var(--bgl-tertiary-30) !important;
5199
+ }
5200
+
5201
+ .m_bg-tertiary-40 {
5202
+ background: var(--bgl-tertiary-40) !important;
5203
+ --alpha-color: var(--bgl-tertiary-40);
5204
+ }
5205
+
5206
+ .m_color-tertiary-40 {
5207
+ color: var(--bgl-tertiary-40) !important;
5208
+ }
5209
+
5210
+ .m_bg-input-tertiary-40 input,
5211
+ .m_bg-input-tertiary-40 textarea,
5212
+ .m_bg-input-tertiary-40 .selectinput-btn {
5213
+ background: var(--bgl-tertiary-40) !important;
5214
+ --alpha-color: var(--bgl-tertiary-40);
5215
+ }
5216
+
5217
+ .m_border-tertiary-40 {
5218
+ border-color: var(--bgl-tertiary-40) !important;
5219
+ }
5220
+
5221
+ .m_color-input-tertiary-40 input {
5222
+ color: var(--bgl-tertiary-40) !important;
5223
+ }
5224
+
5225
+ .m_bg-tertiary-50 {
5226
+ background: var(--bgl-tertiary-50) !important;
5227
+ --alpha-color: var(--bgl-tertiary-50);
5228
+ }
5229
+
5230
+ .m_color-tertiary-50 {
5231
+ color: var(--bgl-tertiary-50) !important;
5232
+ }
5233
+
5234
+ .m_bg-input-tertiary-50 input,
5235
+ .m_bg-input-tertiary-50 textarea,
5236
+ .m_bg-input-tertiary-50 .selectinput-btn {
5237
+ background: var(--bgl-tertiary-50) !important;
5238
+ --alpha-color: var(--bgl-tertiary-50);
5239
+ }
5240
+
5241
+ .m_border-tertiary-50 {
5242
+ border-color: var(--bgl-tertiary-50) !important;
5243
+ }
5244
+
5245
+ .m_color-input-tertiary-50 input {
5246
+ color: var(--bgl-tertiary-50) !important;
5247
+ }
5248
+
5249
+ .m_bg-tertiary-60 {
5250
+ background: var(--bgl-tertiary-60) !important;
5251
+ --alpha-color: var(--bgl-tertiary-60);
5252
+ }
5253
+
5254
+ .m_color-tertiary-60 {
5255
+ color: var(--bgl-tertiary-60) !important;
5256
+ }
5257
+
5258
+ .m_bg-input-tertiary-60 input,
5259
+ .m_bg-input-tertiary-60 textarea,
5260
+ .m_bg-input-tertiary-60 .selectinput-btn {
5261
+ background: var(--bgl-tertiary-60) !important;
5262
+ --alpha-color: var(--bgl-tertiary-60);
5263
+ }
5264
+
5265
+ .m_border-tertiary-60 {
5266
+ border-color: var(--bgl-tertiary-60) !important;
5267
+ }
5268
+
5269
+ .m_color-input-tertiary-60 input {
5270
+ color: var(--bgl-tertiary-60) !important;
5271
+ }
5272
+
5273
+ .m_bg-tertiary-70 {
5274
+ background: var(--bgl-tertiary-70) !important;
5275
+ --alpha-color: var(--bgl-tertiary-70);
5276
+ }
5277
+
5278
+ .m_color-tertiary-70 {
5279
+ color: var(--bgl-tertiary-70) !important;
5280
+ }
5281
+
5282
+ .m_bg-input-tertiary-70 input,
5283
+ .m_bg-input-tertiary-70 textarea,
5284
+ .m_bg-input-tertiary-70 .selectinput-btn {
5285
+ background: var(--bgl-tertiary-70) !important;
5286
+ --alpha-color: var(--bgl-tertiary-70);
5287
+ }
5288
+
5289
+ .m_border-tertiary-70 {
5290
+ border-color: var(--bgl-tertiary-70) !important;
5291
+ }
5292
+
5293
+ .m_color-input-tertiary-70 input {
5294
+ color: var(--bgl-tertiary-70) !important;
5295
+ }
5296
+
5297
+ .m_bg-tertiary-80 {
5298
+ background: var(--bgl-tertiary-80) !important;
5299
+ --alpha-color: var(--bgl-tertiary-80);
5300
+ }
5301
+
5302
+ .m_color-tertiary-80 {
5303
+ color: var(--bgl-tertiary-80) !important;
5304
+ }
5305
+
5306
+ .m_bg-input-tertiary-80 input,
5307
+ .m_bg-input-tertiary-80 textarea,
5308
+ .m_bg-input-tertiary-80 .selectinput-btn {
5309
+ background: var(--bgl-tertiary-80) !important;
5310
+ --alpha-color: var(--bgl-tertiary-80);
5311
+ }
5312
+
5313
+ .m_border-tertiary-80 {
5314
+ border-color: var(--bgl-tertiary-80) !important;
5315
+ }
5316
+
5317
+ .m_color-input-tertiary-80 input {
5318
+ color: var(--bgl-tertiary-80) !important;
5319
+ }
5320
+
5321
+ .m_bg-tertiary-90 {
5322
+ background: var(--bgl-tertiary-90) !important;
5323
+ --alpha-color: var(--bgl-tertiary-90);
5324
+ }
5325
+
5326
+ .m_color-tertiary-90 {
5327
+ color: var(--bgl-tertiary-90) !important;
5328
+ }
5329
+
5330
+ .m_bg-input-tertiary-90 input,
5331
+ .m_bg-input-tertiary-90 textarea,
5332
+ .m_bg-input-tertiary-90 .selectinput-btn {
5333
+ background: var(--bgl-tertiary-90) !important;
5334
+ --alpha-color: var(--bgl-tertiary-90);
5335
+ }
5336
+
5337
+ .m_border-tertiary-90 {
5338
+ border-color: var(--bgl-tertiary-90) !important;
5339
+ }
5340
+
5341
+ .m_color-input-tertiary-90 input {
5342
+ color: var(--bgl-tertiary-90) !important;
5343
+ }
5344
+
5345
+ .m_bg-tertiary-100 {
5346
+ background: var(--bgl-tertiary-100) !important;
5347
+ --alpha-color: var(--bgl-tertiary-100);
5348
+ }
5349
+
5350
+ .m_color-tertiary-100 {
5351
+ color: var(--bgl-tertiary-100) !important;
5352
+ }
5353
+
5354
+ .m_bg-input-tertiary-100 input,
5355
+ .m_bg-input-tertiary-100 textarea,
5356
+ .m_bg-input-tertiary-100 .selectinput-btn {
5357
+ background: var(--bgl-tertiary-100) !important;
5358
+ --alpha-color: var(--bgl-tertiary-100);
5359
+ }
5360
+
5361
+ .m_border-tertiary-100 {
5362
+ border-color: var(--bgl-tertiary-100) !important;
5363
+ }
5364
+
5365
+ .m_color-input-tertiary-100 input {
5366
+ color: var(--bgl-tertiary-100) !important;
5367
+ }
5368
+
5369
+ .m_bg-tertiary-110 {
5370
+ background: var(--bgl-tertiary-110) !important;
5371
+ --alpha-color: var(--bgl-tertiary-110);
5372
+ }
5373
+
5374
+ .m_color-tertiary-110 {
5375
+ color: var(--bgl-tertiary-110) !important;
5376
+ }
5377
+
5378
+ .m_bg-input-tertiary-110 input,
5379
+ .m_bg-input-tertiary-110 textarea,
5380
+ .m_bg-input-tertiary-110 .selectinput-btn {
5381
+ background: var(--bgl-tertiary-110) !important;
5382
+ --alpha-color: var(--bgl-tertiary-110);
5383
+ }
5384
+
5385
+ .m_border-tertiary-110 {
5386
+ border-color: var(--bgl-tertiary-110) !important;
5387
+ }
5388
+
5389
+ .m_color-input-tertiary-110 input {
5390
+ color: var(--bgl-tertiary-110) !important;
5391
+ }
5392
+
5393
+ .m_bg-tertiary-120 {
5394
+ background: var(--bgl-tertiary-120) !important;
5395
+ --alpha-color: var(--bgl-tertiary-120);
5396
+ }
5397
+
5398
+ .m_color-tertiary-120 {
5399
+ color: var(--bgl-tertiary-120) !important;
5400
+ }
5401
+
5402
+ .m_bg-input-tertiary-120 input,
5403
+ .m_bg-input-tertiary-120 textarea,
5404
+ .m_bg-input-tertiary-120 .selectinput-btn {
5405
+ background: var(--bgl-tertiary-120) !important;
5406
+ --alpha-color: var(--bgl-tertiary-120);
5407
+ }
5408
+
5409
+ .m_border-tertiary-120 {
5410
+ border-color: var(--bgl-tertiary-120) !important;
5411
+ }
5412
+
5413
+ .m_color-input-tertiary-120 input {
5414
+ color: var(--bgl-tertiary-120) !important;
5415
+ }
5416
+
5417
+ .m_bg-tertiary-130 {
5418
+ background: var(--bgl-tertiary-130) !important;
5419
+ --alpha-color: var(--bgl-tertiary-130);
5420
+ }
5421
+
5422
+ .m_color-tertiary-130 {
5423
+ color: var(--bgl-tertiary-130) !important;
5424
+ }
5425
+
5426
+ .m_bg-input-tertiary-130 input,
5427
+ .m_bg-input-tertiary-130 textarea,
5428
+ .m_bg-input-tertiary-130 .selectinput-btn {
5429
+ background: var(--bgl-tertiary-130) !important;
5430
+ --alpha-color: var(--bgl-tertiary-130);
5431
+ }
5432
+
5433
+ .m_border-tertiary-130 {
5434
+ border-color: var(--bgl-tertiary-130) !important;
5435
+ }
5436
+
5437
+ .m_color-input-tertiary-130 input {
5438
+ color: var(--bgl-tertiary-130) !important;
5439
+ }
5440
+
5441
+ /* Quaternary */
5442
+ .m_bg-quaternary {
5443
+ background: var(--bgl-quaternary) !important;
5444
+ --alpha-color: var(--bgl-quaternary);
5445
+ }
5446
+
5447
+ .m_color-quaternary {
5448
+ color: var(--bgl-quaternary) !important;
5449
+ }
5450
+
5451
+ .m_bg-input-quaternary input,
5452
+ .m_bg-input-quaternary textarea,
5453
+ .m_bg-input-quaternary .selectinput-btn {
5454
+ background: var(--bgl-quaternary) !important;
5455
+ --alpha-color: var(--bgl-quaternary);
5456
+ }
5457
+
5458
+ .m_border-quaternary {
5459
+ border-color: var(--bgl-quaternary) !important;
5460
+ }
5461
+
5462
+ .m_color-input-quaternary input {
5463
+ color: var(--bgl-quaternary) !important;
5464
+ }
5465
+
5466
+ .m_bg-quaternary-light {
5467
+ background: var(--bgl-quaternary-light) !important;
5468
+ --alpha-color: var(--bgl-quaternary-light);
5469
+ }
5470
+
5471
+ .m_color-quaternary-light {
5472
+ color: var(--bgl-quaternary-light) !important;
5473
+ }
5474
+
5475
+ .m_bg-input-quaternary-light input,
5476
+ .m_bg-input-quaternary-light textarea,
5477
+ .m_bg-input-quaternary-light .selectinput-btn {
5478
+ background: var(--bgl-quaternary-light) !important;
5479
+ --alpha-color: var(--bgl-quaternary-light);
5480
+ }
5481
+
5482
+ .m_border-quaternary-light {
5483
+ border-color: var(--bgl-quaternary-light) !important;
5484
+ }
5485
+
5486
+ .m_color-input-quaternary-light input {
5487
+ color: var(--bgl-quaternary-light) !important;
5488
+ }
5489
+
5490
+ .m_bg-quaternary-tint {
5491
+ background: var(--bgl-quaternary-tint) !important;
5492
+ --alpha-color: var(--bgl-quaternary-tint);
5493
+ }
5494
+
5495
+ .m_color-quaternary-tint {
5496
+ color: var(--bgl-quaternary-tint) !important;
5497
+ }
5498
+
5499
+ .m_bg-input-quaternary-tint input,
5500
+ .m_bg-input-quaternary-tint textarea,
5501
+ .m_bg-input-quaternary-tint .selectinput-btn {
5502
+ background: var(--bgl-quaternary-tint) !important;
5503
+ --alpha-color: var(--bgl-quaternary-tint);
5504
+ }
5505
+
5506
+ .m_border-quaternary-tint {
5507
+ border-color: var(--bgl-quaternary-tint) !important;
5508
+ }
5509
+
5510
+ .m_color-input-quaternary-tint input {
5511
+ color: var(--bgl-quaternary-tint) !important;
5512
+ }
5513
+
5514
+ .m_bg-quaternary-10 {
5515
+ background: var(--bgl-quaternary-10) !important;
5516
+ --alpha-color: var(--bgl-quaternary-10);
5517
+ }
5518
+
5519
+ .m_color-quaternary-10 {
5520
+ color: var(--bgl-quaternary-10) !important;
5521
+ }
5522
+
5523
+ .m_bg-input-quaternary-10 input,
5524
+ .m_bg-input-quaternary-10 textarea,
5525
+ .m_bg-input-quaternary-10 .selectinput-btn {
5526
+ background: var(--bgl-quaternary-10) !important;
5527
+ --alpha-color: var(--bgl-quaternary-10);
5528
+ }
5529
+
5530
+ .m_border-quaternary-10 {
5531
+ border-color: var(--bgl-quaternary-10) !important;
5532
+ }
5533
+
5534
+ .m_color-input-quaternary-10 input {
5535
+ color: var(--bgl-quaternary-10) !important;
5536
+ }
5537
+
5538
+ .m_bg-quaternary-20 {
5539
+ background: var(--bgl-quaternary-20) !important;
5540
+ --alpha-color: var(--bgl-quaternary-20);
5541
+ }
5542
+
5543
+ .m_color-quaternary-20 {
5544
+ color: var(--bgl-quaternary-20) !important;
5545
+ }
5546
+
5547
+ .m_bg-input-quaternary-20 input,
5548
+ .m_bg-input-quaternary-20 textarea,
5549
+ .m_bg-input-quaternary-20 .selectinput-btn {
5550
+ background: var(--bgl-quaternary-20) !important;
5551
+ --alpha-color: var(--bgl-quaternary-20);
5552
+ }
5553
+
5554
+ .m_border-quaternary-20 {
5555
+ border-color: var(--bgl-quaternary-20) !important;
5556
+ }
5557
+
5558
+ .m_color-input-quaternary-20 input {
5559
+ color: var(--bgl-quaternary-20) !important;
5560
+ }
5561
+
5562
+ .m_bg-quaternary-30 {
5563
+ background: var(--bgl-quaternary-30) !important;
5564
+ --alpha-color: var(--bgl-quaternary-30);
5565
+ }
5566
+
5567
+ .m_color-quaternary-30 {
5568
+ color: var(--bgl-quaternary-30) !important;
5569
+ }
5570
+
5571
+ .m_bg-input-quaternary-30 input,
5572
+ .m_bg-input-quaternary-30 textarea,
5573
+ .m_bg-input-quaternary-30 .selectinput-btn {
5574
+ background: var(--bgl-quaternary-30) !important;
5575
+ --alpha-color: var(--bgl-quaternary-30);
5576
+ }
5577
+
5578
+ .m_border-quaternary-30 {
5579
+ border-color: var(--bgl-quaternary-30) !important;
5580
+ }
5581
+
5582
+ .m_color-input-quaternary-30 input {
5583
+ color: var(--bgl-quaternary-30) !important;
5584
+ }
5585
+
5586
+ .m_bg-quaternary-40 {
5587
+ background: var(--bgl-quaternary-40) !important;
5588
+ --alpha-color: var(--bgl-quaternary-40);
5589
+ }
5590
+
5591
+ .m_color-quaternary-40 {
5592
+ color: var(--bgl-quaternary-40) !important;
5593
+ }
5594
+
5595
+ .m_bg-input-quaternary-40 input,
5596
+ .m_bg-input-quaternary-40 textarea,
5597
+ .m_bg-input-quaternary-40 .selectinput-btn {
5598
+ background: var(--bgl-quaternary-40) !important;
5599
+ --alpha-color: var(--bgl-quaternary-40);
5600
+ }
5601
+
5602
+ .m_border-quaternary-40 {
5603
+ border-color: var(--bgl-quaternary-40) !important;
5604
+ }
5605
+
5606
+ .m_color-input-quaternary-40 input {
5607
+ color: var(--bgl-quaternary-40) !important;
5608
+ }
5609
+
5610
+ .m_bg-quaternary-50 {
5611
+ background: var(--bgl-quaternary-50) !important;
5612
+ --alpha-color: var(--bgl-quaternary-50);
5613
+ }
5614
+
5615
+ .m_color-quaternary-50 {
5616
+ color: var(--bgl-quaternary-50) !important;
5617
+ }
5618
+
5619
+ .m_bg-input-quaternary-50 input,
5620
+ .m_bg-input-quaternary-50 textarea,
5621
+ .m_bg-input-quaternary-50 .selectinput-btn {
5622
+ background: var(--bgl-quaternary-50) !important;
5623
+ --alpha-color: var(--bgl-quaternary-50);
5624
+ }
5625
+
5626
+ .m_border-quaternary-50 {
5627
+ border-color: var(--bgl-quaternary-50) !important;
5628
+ }
5629
+
5630
+ .m_color-input-quaternary-50 input {
5631
+ color: var(--bgl-quaternary-50) !important;
5632
+ }
5633
+
5634
+ .m_bg-quaternary-60 {
5635
+ background: var(--bgl-quaternary-60) !important;
5636
+ --alpha-color: var(--bgl-quaternary-60);
5637
+ }
5638
+
5639
+ .m_color-quaternary-60 {
5640
+ color: var(--bgl-quaternary-60) !important;
5641
+ }
5642
+
5643
+ .m_bg-input-quaternary-60 input,
5644
+ .m_bg-input-quaternary-60 textarea,
5645
+ .m_bg-input-quaternary-60 .selectinput-btn {
5646
+ background: var(--bgl-quaternary-60) !important;
5647
+ --alpha-color: var(--bgl-quaternary-60);
5648
+ }
5649
+
5650
+ .m_border-quaternary-60 {
5651
+ border-color: var(--bgl-quaternary-60) !important;
5652
+ }
5653
+
5654
+ .m_color-input-quaternary-60 input {
5655
+ color: var(--bgl-quaternary-60) !important;
5656
+ }
5657
+
5658
+ .m_bg-quaternary-70 {
5659
+ background: var(--bgl-quaternary-70) !important;
5660
+ --alpha-color: var(--bgl-quaternary-70);
5661
+ }
5662
+
5663
+ .m_color-quaternary-70 {
5664
+ color: var(--bgl-quaternary-70) !important;
5665
+ }
5666
+
5667
+ .m_bg-input-quaternary-70 input,
5668
+ .m_bg-input-quaternary-70 textarea,
5669
+ .m_bg-input-quaternary-70 .selectinput-btn {
5670
+ background: var(--bgl-quaternary-70) !important;
5671
+ --alpha-color: var(--bgl-quaternary-70);
5672
+ }
5673
+
5674
+ .m_border-quaternary-70 {
5675
+ border-color: var(--bgl-quaternary-70) !important;
5676
+ }
5677
+
5678
+ .m_color-input-quaternary-70 input {
5679
+ color: var(--bgl-quaternary-70) !important;
5680
+ }
5681
+
5682
+ .m_bg-quaternary-80 {
5683
+ background: var(--bgl-quaternary-80) !important;
5684
+ --alpha-color: var(--bgl-quaternary-80);
5685
+ }
5686
+
5687
+ .m_color-quaternary-80 {
5688
+ color: var(--bgl-quaternary-80) !important;
5689
+ }
5690
+
5691
+ .m_bg-input-quaternary-80 input,
5692
+ .m_bg-input-quaternary-80 textarea,
5693
+ .m_bg-input-quaternary-80 .selectinput-btn {
5694
+ background: var(--bgl-quaternary-80) !important;
5695
+ --alpha-color: var(--bgl-quaternary-80);
5696
+ }
5697
+
5698
+ .m_border-quaternary-80 {
5699
+ border-color: var(--bgl-quaternary-80) !important;
5700
+ }
5701
+
5702
+ .m_color-input-quaternary-80 input {
5703
+ color: var(--bgl-quaternary-80) !important;
5704
+ }
5705
+
5706
+ .m_bg-quaternary-90 {
5707
+ background: var(--bgl-quaternary-90) !important;
5708
+ --alpha-color: var(--bgl-quaternary-90);
5709
+ }
5710
+
5711
+ .m_color-quaternary-90 {
5712
+ color: var(--bgl-quaternary-90) !important;
5713
+ }
5714
+
5715
+ .m_bg-input-quaternary-90 input,
5716
+ .m_bg-input-quaternary-90 textarea,
5717
+ .m_bg-input-quaternary-90 .selectinput-btn {
5718
+ background: var(--bgl-quaternary-90) !important;
5719
+ --alpha-color: var(--bgl-quaternary-90);
5720
+ }
5721
+
5722
+ .m_border-quaternary-90 {
5723
+ border-color: var(--bgl-quaternary-90) !important;
5724
+ }
5725
+
5726
+ .m_color-input-quaternary-90 input {
5727
+ color: var(--bgl-quaternary-90) !important;
5728
+ }
5729
+
5730
+ .m_bg-quaternary-100 {
5731
+ background: var(--bgl-quaternary-100) !important;
5732
+ --alpha-color: var(--bgl-quaternary-100);
5733
+ }
5734
+
5735
+ .m_color-quaternary-100 {
5736
+ color: var(--bgl-quaternary-100) !important;
5737
+ }
5738
+
5739
+ .m_bg-input-quaternary-100 input,
5740
+ .m_bg-input-quaternary-100 textarea,
5741
+ .m_bg-input-quaternary-100 .selectinput-btn {
5742
+ background: var(--bgl-quaternary-100) !important;
5743
+ --alpha-color: var(--bgl-quaternary-100);
5744
+ }
5745
+
5746
+ .m_border-quaternary-100 {
5747
+ border-color: var(--bgl-quaternary-100) !important;
5748
+ }
5749
+
5750
+ .m_color-input-quaternary-100 input {
5751
+ color: var(--bgl-quaternary-100) !important;
5752
+ }
5753
+
5754
+ .m_bg-quaternary-110 {
5755
+ background: var(--bgl-quaternary-110) !important;
5756
+ --alpha-color: var(--bgl-quaternary-110);
5757
+ }
5758
+
5759
+ .m_color-quaternary-110 {
5760
+ color: var(--bgl-quaternary-110) !important;
5761
+ }
5762
+
5763
+ .m_bg-input-quaternary-110 input,
5764
+ .m_bg-input-quaternary-110 textarea,
5765
+ .m_bg-input-quaternary-110 .selectinput-btn {
5766
+ background: var(--bgl-quaternary-110) !important;
5767
+ --alpha-color: var(--bgl-quaternary-110);
5768
+ }
5769
+
5770
+ .m_border-quaternary-110 {
5771
+ border-color: var(--bgl-quaternary-110) !important;
5772
+ }
5773
+
5774
+ .m_color-input-quaternary-110 input {
5775
+ color: var(--bgl-quaternary-110) !important;
5776
+ }
5777
+
5778
+ .m_bg-quaternary-120 {
5779
+ background: var(--bgl-quaternary-120) !important;
5780
+ --alpha-color: var(--bgl-quaternary-120);
5781
+ }
5782
+
5783
+ .m_color-quaternary-120 {
5784
+ color: var(--bgl-quaternary-120) !important;
5785
+ }
5786
+
5787
+ .m_bg-input-quaternary-120 input,
5788
+ .m_bg-input-quaternary-120 textarea,
5789
+ .m_bg-input-quaternary-120 .selectinput-btn {
5790
+ background: var(--bgl-quaternary-120) !important;
5791
+ --alpha-color: var(--bgl-quaternary-120);
5792
+ }
5793
+
5794
+ .m_border-quaternary-120 {
5795
+ border-color: var(--bgl-quaternary-120) !important;
5796
+ }
5797
+
5798
+ .m_color-input-quaternary-120 input {
5799
+ color: var(--bgl-quaternary-120) !important;
5800
+ }
5801
+
5802
+ .m_bg-quaternary-130 {
5803
+ background: var(--bgl-quaternary-130) !important;
5804
+ --alpha-color: var(--bgl-quaternary-130);
5805
+ }
5806
+
5807
+ .m_color-quaternary-130 {
5808
+ color: var(--bgl-quaternary-130) !important;
5809
+ }
5810
+
5811
+ .m_bg-input-quaternary-130 input,
5812
+ .m_bg-input-quaternary-130 textarea,
5813
+ .m_bg-input-quaternary-130 .selectinput-btn {
5814
+ background: var(--bgl-quaternary-130) !important;
5815
+ --alpha-color: var(--bgl-quaternary-130);
5816
+ }
5817
+
5818
+ .m_border-quaternary-130 {
5819
+ border-color: var(--bgl-quaternary-130) !important;
5820
+ }
5821
+
5822
+ .m_color-input-quaternary-130 input {
5823
+ color: var(--bgl-quaternary-130) !important;
5824
+ }
4669
5825
  }