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