-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
12023 lines (3833 loc) · 415 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml" class="wf-adonisweb-n4-active wf-adonisweb-n7-active wf-adonisweb-i4-active wf-adonisweb-i7-active wf-active" lang="en-US"><!-- Mirrored from chrysalide-in.squarespace.com/about by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 14 Oct 2022 14:09:46 GMT --><!-- Added by HTTrack --><head><meta http-equiv="content-type" content="text/html;charset=utf-8"><!-- /Added by HTTrack -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- This is Squarespace. --><!-- chrysalide-in -->
<base #href="">
<meta charset="utf-8">
<title>About — Chrysalide</title>
<link rel="shortcut icon" type="image/x-icon" href="https://assets.squarespace.com/universal/default-favicon.ico">
<link rel="canonical" href="https://www.chrysalide.co.in/about">
<meta property="og:site_name" content="Chrysalide">
<meta property="og:title" content="About — Chrysalide">
<meta property="og:url" content="https://www.chrysalide.co.in/about">
<meta property="og:type" content="website">
<meta itemprop="name" content="About — Chrysalide">
<meta itemprop="url" content="https://www.chrysalide.co.in/about">
<meta name="twitter:title" content="About — Chrysalide">
<meta name="twitter:url" content="https://www.chrysalide.co.in/about">
<meta name="twitter:card" content="summary">
<meta name="description" content="">
<link rel="preconnect" href="https://images.squarespace-cdn.com/">
<script type="text/javascript" src="./use.typekit.net/ik/Sxv5fgsaoYF3XyNMlbBT0IbaLFDWDJRZV3x2mn2vfcSfe032fFHN4UJLFRbh52jhWDjDF29twRJtZQ8qZ26awe9tF2syZQ8RFU7BMkG0jAFu-WsoShFGZAsude80ZkoRdhXCHKoyjamTiY8Djhy8ZYmC-Ao"></script>
<style type="text/css">@font-face{font-family:adonis-web;src:url(https://use.typekit.net/af/807888/00000000000000000001007d/27/l?subset_id=2&fvd=n4&v=3) format("woff2"),url(https://use.typekit.net/af/807888/00000000000000000001007d/27/d?subset_id=2&fvd=n4&v=3) format("woff"),url(https://use.typekit.net/af/807888/00000000000000000001007d/27/a?subset_id=2&fvd=n4&v=3) format("opentype");font-weight:400;font-style:normal;font-stretch:normal;font-display:auto;}@font-face{font-family:adonis-web;src:url(https://use.typekit.net/af/d99a65/000000000000000000010080/27/l?subset_id=2&fvd=n7&v=3) format("woff2"),url(https://use.typekit.net/af/d99a65/000000000000000000010080/27/d?subset_id=2&fvd=n7&v=3) format("woff"),url(https://use.typekit.net/af/d99a65/000000000000000000010080/27/a?subset_id=2&fvd=n7&v=3) format("opentype");font-weight:700;font-style:normal;font-stretch:normal;font-display:auto;}@font-face{font-family:adonis-web;src:url(https://use.typekit.net/af/0082da/00000000000000000001007f/27/l?subset_id=2&fvd=i4&v=3) format("woff2"),url(https://use.typekit.net/af/0082da/00000000000000000001007f/27/d?subset_id=2&fvd=i4&v=3) format("woff"),url(https://use.typekit.net/af/0082da/00000000000000000001007f/27/a?subset_id=2&fvd=i4&v=3) format("opentype");font-weight:400;font-style:italic;font-stretch:normal;font-display:auto;}@font-face{font-family:adonis-web;src:url(https://use.typekit.net/af/4e9399/000000000000000000010081/27/l?subset_id=2&fvd=i7&v=3) format("woff2"),url(https://use.typekit.net/af/4e9399/000000000000000000010081/27/d?subset_id=2&fvd=i7&v=3) format("woff"),url(https://use.typekit.net/af/4e9399/000000000000000000010081/27/a?subset_id=2&fvd=i7&v=3) format("opentype");font-weight:700;font-style:italic;font-stretch:normal;font-display:auto;}</style><script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Pontano+Sans:ital,wght@0,400;1,400">
<script type="text/javascript" crossorigin="anonymous" defer="defer" nomodule="nomodule" src="./assets.squarespace.com/%40sqs/polyfiller/1.2.2/legacy.js"></script>
<script type="text/javascript" crossorigin="anonymous" defer="defer" src="./assets.squarespace.com/%40sqs/polyfiller/1.2.2/modern.js"></script>
<script type="text/javascript">SQUARESPACE_ROLLUPS = {};</script>
<script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/extract-css-runtime-94f245f2921c3a938af18-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-extract_css_runtime');</script>
<script crossorigin="anonymous" src="./assets.squarespace.com/universal/scripts-compressed/extract-css-runtime-94f245f2921c3a938af18-min.en-US.js" defer=""></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/extract-css-moment-js-vendor-98bddc81dc37f44faa7b2-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-extract_css_moment_js_vendor');</script>
<script crossorigin="anonymous" src="./assets.squarespace.com/universal/scripts-compressed/extract-css-moment-js-vendor-98bddc81dc37f44faa7b2-min.en-US.js" defer=""></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/cldr-resource-pack-b5aec47eda85110c6c907-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-cldr_resource_pack');</script>
<script crossorigin="anonymous" src="./assets.squarespace.com/universal/scripts-compressed/cldr-resource-pack-b5aec47eda85110c6c907-min.en-US.js" defer=""></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/common-vendors-stable-a30753685e88d3c1847ad-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-common_vendors_stable');</script>
<script crossorigin="anonymous" src="./assets.squarespace.com/universal/scripts-compressed/common-vendors-stable-a30753685e88d3c1847ad-min.en-US.js" defer=""></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/common-vendors-43a80fcb99647e7d06605-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-common_vendors');</script>
<script crossorigin="anonymous" src="./assets.squarespace.com/universal/scripts-compressed/common-vendors-43a80fcb99647e7d06605-min.en-US.js" defer=""></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/common-a3386095a51c7e1e7af5a-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-common');</script>
<script crossorigin="anonymous" src="./assets.squarespace.com/universal/scripts-compressed/common-a3386095a51c7e1e7af5a-min.en-US.js" defer=""></script><script>(function(rollups, name) { if (!rollups[name]) { rollups[name] = {}; } rollups[name].js = ["//assets.squarespace.com/universal/scripts-compressed/performance-7532c45b5785b33eab5ea-min.en-US.js"]; })(SQUARESPACE_ROLLUPS, 'squarespace-performance');</script>
<script crossorigin="anonymous" src="./assets.squarespace.com/universal/scripts-compressed/performance-7532c45b5785b33eab5ea-min.en-US.js" defer=""></script><script data-name="static-context">Static = window.Static || {}; Static.SQUARESPACE_CONTEXT = {"facebookAppId":"314192535267336","facebookApiVersion":"v6.0","rollups":{"squarespace-announcement-bar":{"js":"//assets.squarespace.com/universal/scripts-compressed/announcement-bar-dcf64e8ca0c4d41b13b10-min.en-US.js"},"squarespace-audio-player":{"css":"//assets.squarespace.com/universal/styles-compressed/audio-player-702bf18174efe0acaa8ce-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/audio-player-10685e758ebe7d7d12915-min.en-US.js"},"squarespace-blog-collection-list":{"css":"//assets.squarespace.com/universal/styles-compressed/blog-collection-list-3d55c64c25996c7633fc2-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/blog-collection-list-b44b4108e3cadfeb3bb28-min.en-US.js"},"squarespace-calendar-block-renderer":{"css":"//assets.squarespace.com/universal/styles-compressed/calendar-block-renderer-49c4a5f3dae67a728e3f4-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/calendar-block-renderer-9ef6ef3c761848645e5f8-min.en-US.js"},"squarespace-chartjs-helpers":{"css":"//assets.squarespace.com/universal/styles-compressed/chartjs-helpers-53c004ac7d4bde1c92e38-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/chartjs-helpers-f4e36688a2b42a8258dcb-min.en-US.js"},"squarespace-comments":{"css":"//assets.squarespace.com/universal/styles-compressed/comments-91e23fb14e407e3111565-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/comments-d2ff30b08a15cf8e4f062-min.en-US.js"},"squarespace-dialog":{"css":"//assets.squarespace.com/universal/styles-compressed/dialog-89b254b5c87045b9e1360-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/dialog-261a4f4de50a34709346a-min.en-US.js"},"squarespace-events-collection":{"css":"//assets.squarespace.com/universal/styles-compressed/events-collection-49c4a5f3dae67a728e3f4-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/events-collection-bc579a8f3061b6cfdef86-min.en-US.js"},"squarespace-form-rendering-utils":{"js":"//assets.squarespace.com/universal/scripts-compressed/form-rendering-utils-60499883eed05b6ecc127-min.en-US.js"},"squarespace-forms":{"css":"//assets.squarespace.com/universal/styles-compressed/forms-4a16a8a8c965386db2173-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/forms-27c21cb786a5f3a61ad1d-min.en-US.js"},"squarespace-gallery-collection-list":{"css":"//assets.squarespace.com/universal/styles-compressed/gallery-collection-list-3d55c64c25996c7633fc2-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/gallery-collection-list-a275e058377feac127abb-min.en-US.js"},"squarespace-image-zoom":{"css":"//assets.squarespace.com/universal/styles-compressed/image-zoom-8804675084a3982b022e3-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/image-zoom-7817bbf3299a0b654acc4-min.en-US.js"},"squarespace-pinterest":{"css":"//assets.squarespace.com/universal/styles-compressed/pinterest-3d55c64c25996c7633fc2-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/pinterest-a9662d988b5133837c82f-min.en-US.js"},"squarespace-popup-overlay":{"css":"//assets.squarespace.com/universal/styles-compressed/popup-overlay-948192219c3257f767ec5-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/popup-overlay-96b256344e1152a87292a-min.en-US.js"},"squarespace-product-quick-view":{"css":"//assets.squarespace.com/universal/styles-compressed/product-quick-view-5d6c4f164c4ab5457107a-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/product-quick-view-d070a29480ad62b740ba4-min.en-US.js"},"squarespace-products-collection-item-v2":{"css":"//assets.squarespace.com/universal/styles-compressed/products-collection-item-v2-8804675084a3982b022e3-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/products-collection-item-v2-5eb9c3dcbb11d5844ba3e-min.en-US.js"},"squarespace-products-collection-list-v2":{"css":"//assets.squarespace.com/universal/styles-compressed/products-collection-list-v2-8804675084a3982b022e3-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/products-collection-list-v2-68e682b0629ed86541771-min.en-US.js"},"squarespace-search-page":{"css":"//assets.squarespace.com/universal/styles-compressed/search-page-9d0a55de1efafbb9218e1-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/search-page-f5086235d2d60baaecaeb-min.en-US.js"},"squarespace-search-preview":{"js":"//assets.squarespace.com/universal/scripts-compressed/search-preview-46e11810a59e11b7e4b49-min.en-US.js"},"squarespace-simple-liking":{"css":"//assets.squarespace.com/universal/styles-compressed/simple-liking-ef94529873378652e6e86-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/simple-liking-599ed48f406bb7fd00d1a-min.en-US.js"},"squarespace-social-buttons":{"css":"//assets.squarespace.com/universal/styles-compressed/social-buttons-1f18e025ea682ade6293a-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/social-buttons-1bbb33b7960a74025a462-min.en-US.js"},"squarespace-tourdates":{"css":"//assets.squarespace.com/universal/styles-compressed/tourdates-3d55c64c25996c7633fc2-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/tourdates-67520d5a2d1dd60226f6a-min.en-US.js"},"squarespace-website-overlays-manager":{"css":"//assets.squarespace.com/universal/styles-compressed/website-overlays-manager-7cecc648f858e6f692130-min.en-US.css","js":"//assets.squarespace.com/universal/scripts-compressed/website-overlays-manager-ab17a24482c99819822c4-min.en-US.js"}},"pageType":2,"website":{"id":"63458228e9dd870e844ae9c7","identifier":"chrysalide-in","websiteType":1,"contentModifiedOn":1665677592118,"cloneable":false,"hasBeenCloneable":false,"siteStatus":{},"language":"en-US","timeZone":"Asia/Kolkata","machineTimeZoneOffset":19800000,"timeZoneOffset":19800000,"timeZoneAbbr":"IST","siteTitle":"Chrysalide","fullSiteTitle":"About \u2014 Chrysalide","siteDescription":"","shareButtonOptions":{"2":true,"3":true,"7":true,"8":true,"6":true,"1":true,"4":true},"authenticUrl":"https://www.chrysalide.co.in","internalUrl":"https://chrysalide-in.squarespace.com","baseUrl":"https://www.chrysalide.co.in","primaryDomain":"www.chrysalide.co.in","sslSetting":3,"isHstsEnabled":true,"socialAccounts":[{"serviceId":64,"addedOn":1665499689044,"profileUrl":"http://instagram.com/squarespace","iconEnabled":true,"serviceName":"instagram-unauth"},{"serviceId":60,"addedOn":1665499689051,"profileUrl":"http://facebook.com/squarespace","iconEnabled":true,"serviceName":"facebook-unauth"}],"typekitId":"","statsMigrated":false,"imageMetadataProcessingEnabled":false,"captchaSettings":{"enabledForDonations":false},"showOwnerLogin":false},"websiteSettings":{"id":"63458228e9dd870e844ae9ca","websiteId":"63458228e9dd870e844ae9c7","subjects":[],"country":"IN","state":"KA","simpleLikingEnabled":true,"popupOverlaySettings":{"style":1,"enabledPages":[]},"commentLikesAllowed":true,"commentAnonAllowed":true,"commentThreaded":true,"commentApprovalRequired":false,"commentAvatarsOn":true,"commentSortType":2,"commentFlagThreshold":0,"commentFlagsAllowed":true,"commentEnableByDefault":true,"commentDisableAfterDaysDefault":0,"disqusShortname":"","commentsEnabled":false,"storeSettings":{"returnPolicy":null,"termsOfService":null,"privacyPolicy":null,"expressCheckout":false,"continueShoppingLinkUrl":"/","useLightCart":false,"showNoteField":false,"shippingCountryDefaultValue":"US","billToShippingDefaultValue":false,"showShippingPhoneNumber":true,"isShippingPhoneRequired":false,"showBillingPhoneNumber":true,"isBillingPhoneRequired":false,"currenciesSupported":["USD","CAD","GBP","AUD","EUR","CHF","NOK","SEK","DKK","NZD","SGD","MXN","HKD","CZK","ILS","MYR","RUB","PHP","PLN","THB","BRL","ARS","COP","IDR","INR","JPY","ZAR"],"defaultCurrency":"USD","selectedCurrency":"INR","measurementStandard":1,"showCustomCheckoutForm":false,"checkoutPageMarketingOptInEnabled":true,"enableMailingListOptInByDefault":false,"sameAsRetailLocation":false,"merchandisingSettings":{"scarcityEnabledOnProductItems":false,"scarcityEnabledOnProductBlocks":false,"scarcityMessageType":"DEFAULT_SCARCITY_MESSAGE","scarcityThreshold":10,"multipleQuantityAllowedForServices":true,"restockNotificationsEnabled":false,"restockNotificationsMailingListSignUpEnabled":false,"relatedProductsEnabled":false,"relatedProductsOrdering":"random","soldOutVariantsDropdownDisabled":false,"productComposerOptedIn":false,"productComposerABTestOptedOut":false,"productReviewsEnabled":false},"isLive":false,"multipleQuantityAllowedForServices":true},"useEscapeKeyToLogin":false,"ssBadgeType":1,"ssBadgePosition":4,"ssBadgeVisibility":1,"ssBadgeDevices":1,"pinterestOverlayOptions":{"mode":"disabled"},"ampEnabled":false},"cookieSettings":{"isCookieBannerEnabled":false,"isRestrictiveCookiePolicyEnabled":false,"isRestrictiveCookiePolicyAbsolute":false,"cookieBannerText":"","cookieBannerTheme":"","cookieBannerVariant":"","cookieBannerPosition":"","cookieBannerCtaVariant":"","cookieBannerCtaText":"","cookieBannerAcceptType":"OPT_IN","cookieBannerOptOutCtaText":""},"websiteCloneable":false,"collection":{"title":"About","id":"63458d3c84467f71607f5415","fullUrl":"/about","type":10,"permissionType":1},"subscribed":false,"appDomain":"squarespace.com","templateTweakable":true,"tweakJSON":{"header-logo-height":"50px","header-mobile-logo-max-height":"30px","header-vert-padding":"1.5vw","header-width":"Full","maxPageWidth":"1400px","pagePadding":"4vw","tweak-blog-alternating-side-by-side-image-aspect-ratio":"3:2 Standard","tweak-blog-alternating-side-by-side-image-spacing":"6%","tweak-blog-alternating-side-by-side-meta-spacing":"5px","tweak-blog-alternating-side-by-side-primary-meta":"Categories","tweak-blog-alternating-side-by-side-read-more-spacing":"0px","tweak-blog-alternating-side-by-side-secondary-meta":"Date","tweak-blog-basic-grid-columns":"2","tweak-blog-basic-grid-image-aspect-ratio":"3:2 Standard","tweak-blog-basic-grid-image-spacing":"50px","tweak-blog-basic-grid-meta-spacing":"37px","tweak-blog-basic-grid-primary-meta":"Categories","tweak-blog-basic-grid-read-more-spacing":"37px","tweak-blog-basic-grid-secondary-meta":"Date","tweak-blog-item-custom-width":"60","tweak-blog-item-show-author-profile":"false","tweak-blog-item-width":"Narrow","tweak-blog-masonry-columns":"2","tweak-blog-masonry-horizontal-spacing":"150px","tweak-blog-masonry-image-spacing":"23px","tweak-blog-masonry-meta-spacing":"20px","tweak-blog-masonry-primary-meta":"Categories","tweak-blog-masonry-read-more-spacing":"0px","tweak-blog-masonry-secondary-meta":"Date","tweak-blog-masonry-vertical-spacing":"208px","tweak-blog-side-by-side-image-aspect-ratio":"1:1 Square","tweak-blog-side-by-side-image-spacing":"6%","tweak-blog-side-by-side-meta-spacing":"20px","tweak-blog-side-by-side-primary-meta":"Categories","tweak-blog-side-by-side-read-more-spacing":"20px","tweak-blog-side-by-side-secondary-meta":"Date","tweak-blog-single-column-image-spacing":"50px","tweak-blog-single-column-meta-spacing":"30px","tweak-blog-single-column-primary-meta":"Categories","tweak-blog-single-column-read-more-spacing":"30px","tweak-blog-single-column-secondary-meta":"Date","tweak-events-stacked-show-thumbnails":"true","tweak-events-stacked-thumbnail-size":"3:2 Standard","tweak-fixed-header":"false","tweak-fixed-header-style":"Scroll Back","tweak-global-animations-animation-curve":"ease","tweak-global-animations-animation-delay":"0.6s","tweak-global-animations-animation-duration":"0.90s","tweak-global-animations-animation-style":"fade","tweak-global-animations-animation-type":"fade","tweak-global-animations-complexity-level":"detailed","tweak-global-animations-enabled":"true","tweak-portfolio-grid-basic-custom-height":"50","tweak-portfolio-grid-overlay-custom-height":"50","tweak-portfolio-hover-follow-acceleration":"10%","tweak-portfolio-hover-follow-animation-duration":"Medium","tweak-portfolio-hover-follow-animation-type":"Fade","tweak-portfolio-hover-follow-delimiter":"Forward Slash","tweak-portfolio-hover-follow-front":"false","tweak-portfolio-hover-follow-layout":"Inline","tweak-portfolio-hover-follow-size":"75","tweak-portfolio-hover-follow-text-spacing-x":"1.5","tweak-portfolio-hover-follow-text-spacing-y":"1.5","tweak-portfolio-hover-static-animation-duration":"Medium","tweak-portfolio-hover-static-animation-type":"Scale Up","tweak-portfolio-hover-static-delimiter":"Forward Slash","tweak-portfolio-hover-static-front":"false","tweak-portfolio-hover-static-layout":"Stacked","tweak-portfolio-hover-static-size":"75","tweak-portfolio-hover-static-text-spacing-x":"1.5","tweak-portfolio-hover-static-text-spacing-y":"1.5","tweak-portfolio-index-background-animation-duration":"Medium","tweak-portfolio-index-background-animation-type":"Fade","tweak-portfolio-index-background-custom-height":"50","tweak-portfolio-index-background-delimiter":"None","tweak-portfolio-index-background-height":"Large","tweak-portfolio-index-background-horizontal-alignment":"Center","tweak-portfolio-index-background-link-format":"Stacked","tweak-portfolio-index-background-persist":"false","tweak-portfolio-index-background-vertical-alignment":"Middle","tweak-portfolio-index-background-width":"Full","tweak-product-basic-item-click-action":"None","tweak-product-basic-item-gallery-aspect-ratio":"3:4 Three-Four (Vertical)","tweak-product-basic-item-gallery-design":"Slideshow","tweak-product-basic-item-gallery-width":"50%","tweak-product-basic-item-hover-action":"None","tweak-product-basic-item-image-spacing":"3vw","tweak-product-basic-item-image-zoom-factor":"1.75","tweak-product-basic-item-thumbnail-placement":"Side","tweak-product-basic-item-variant-picker-layout":"Dropdowns","tweak-products-columns":"2","tweak-products-gutter-column":"2vw","tweak-products-gutter-row":"2vw","tweak-products-header-text-alignment":"Middle","tweak-products-image-aspect-ratio":"1:1 Square","tweak-products-image-text-spacing":"0.5vw","tweak-products-text-alignment":"Left","tweak-transparent-header":"true"},"templateId":"5c5a519771c10ba3470d8101","templateVersion":"7.1","pageFeatures":[1,2,4],"gmRenderKey":"QUl6YVN5Q0JUUk9xNkx1dkZfSUUxcjQ2LVQ0QWVUU1YtMGQ3bXk4","templateScriptsRootUrl":"https://static1.squarespace.com/static/vta/5c5a519771c10ba3470d8101/scripts/","betaFeatureFlags":["scheduling_block_schema_editor","override_block_styles","crm_default_newsletter_block_to_campaigns","nested_categories_migration_enabled","campaigns_asset_picker","scripts_defer","reduce_general_search_api_traffic","block_duplication","send_local_pickup_ready_email","campaigns_new_image_layout_picker","commerce_site_visitor_metrics","crm_remove_subscriber","product_composer_feedback_form_on_save","commerce_clearpay","commerce_restock_notifications","campaigns_new_subscriber_search","customer_account_creation_recaptcha","supports_versioned_template_assets","commerce_etsy_shipping_import","themes","nested_categories","member_areas_schedule_interview","asset_uploader_refactor","campaigns_content_editing_survey","block_annotations_revamp","campaigns_discount_section_in_blasts","member_areas_spanish_interviews","fluid_engine_filtered_catalog_endpoints","new_stacked_index","crm_use_new_import_modal_profiles","fluid_engine_clean_up_grid_contextual_change","background_art_onboarding","customer_accounts_email_verification","crm_retention_segment","fluid_engine","crm_show_subscriber_import_in_profiles","campaigns_thumbnail_layout","site_header_footer","fluid_engine_block_resizing_indicator","collection_typename_switching","commerce_etsy_product_import","marketing_landing_page","viewer-role-contributor-invites","campaigns_global_uc_ab"],"videoAssetsFeatureFlags":["mux-data-video-collection"],"impersonatedSession":false,"demoCollections":[{"collectionId":"624b503e5d73881124e70ad2","deleted":true},{"collectionId":"624b50495d73881124e70c8b","deleted":true},{"collectionId":"624b504c5d73881124e70cf0","deleted":true},{"collectionId":"624b50535d73881124e70e50","deleted":true},{"collectionId":"624b50565d73881124e70ed3","deleted":true},{"collectionId":"624b505a5d73881124e70f29","deleted":true},{"collectionId":"624b505d5d73881124e70f81","deleted":true},{"collectionId":"624b505d5d73881124e70f87","deleted":true}],"tzData":{"zones":[[330,null,"IST",null]],"rules":{}},"showAnnouncementBar":false};</script><script type="application/ld+json">{"url":"https://www.chrysalide.co.in","name":"Chrysalide","description":"","@context":"http://schema.org","@type":"WebSite"}</script><link rel="stylesheet" type="text/css" href="./static1.squarespace.com/static/versioned-site-css/63458228e9dd870e844ae9c7/5/5c5a519771c10ba3470d8101/63458228e9dd870e844ae9e1/1299/site.css"><script>Static.COOKIE_BANNER_CAPABLE = true;</script>
<!-- End of Squarespace Headers -->
<script>
window.__INITIAL_SQUARESPACE_7_1_SITE_PALETTE__ = [{"id":"accent","value":"#A74D4A"},{"id":"darkAccent","value":"#818B7E"},{"id":"lightAccent","value":"#EAE6E1"},{"id":"black","value":"#121212"},{"id":"white","value":"#F5F5F5"}];
</script>
<style id="colorThemeStyles">
:root {
--white-hsl: 0, 0%, 96.08%;
--black-hsl: 0, 0%, 7.06%;
--safeLightAccent-hsl: 0, 0%, 96.08%;
--safeDarkAccent-hsl: 1.94, 38.59%, 47.25%;
--safeInverseAccent-hsl: 0, 0%, 96.08%;
--safeInverseLightAccent-hsl: 0, 0%, 7.06%;
--safeInverseDarkAccent-hsl: 0, 0%, 96.08%;
--accent-hsl: 1.94, 38.59%, 47.25%;
--lightAccent-hsl: 33.33, 17.65%, 90%;
--darkAccent-hsl: 106.15, 5.31%, 51.96000000000001%;
}
:root {
--announcement-bar-background-color: hsla(var(--black-hsl), 1);
--announcement-bar-text-color: hsla(var(--white-hsl), 1);
--backgroundOverlayColor: hsla(var(--white-hsl), 1);
--gradientHeaderBackgroundColor: hsla(var(--white-hsl), 1);
--gradientHeaderBorderColor: hsla(var(--black-hsl), 1);
--gradientHeaderDropShadowColor: hsla(var(--black-hsl), 1);
--gradientHeaderNavigationColor: hsla(var(--black-hsl), 1);
--headingExtraLargeColor: hsla(var(--black-hsl), 1);
--headingLargeColor: hsla(var(--black-hsl), 1);
--headingLinkColor: hsla(var(--safeDarkAccent-hsl), 1);
--headingMediumColor: hsla(var(--black-hsl), 1);
--headingSmallColor: hsla(var(--black-hsl), 1);
--image-block-card-image-button-bg-color: hsla(var(--safeDarkAccent-hsl), 1);
--image-block-card-image-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--image-block-card-image-overlay-color: hsla(var(--darkAccent-hsl), 1);
--image-block-card-image-subtitle-color: hsla(var(--black-hsl), 1);
--image-block-card-image-title-bg-color: hsla(var(--white-hsl), 0);
--image-block-card-image-title-color: hsla(var(--black-hsl), 1);
--image-block-card-inline-link-color: hsla(var(--black-hsl), 1);
--image-block-collage-background-color: hsla(var(--lightAccent-hsl), 1);
--image-block-collage-image-button-bg-color: hsla(var(--safeDarkAccent-hsl), 1);
--image-block-collage-image-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--image-block-collage-image-overlay-color: hsla(var(--darkAccent-hsl), 1);
--image-block-collage-image-subtitle-color: hsla(var(--black-hsl), 1);
--image-block-collage-image-title-bg-color: hsla(var(--white-hsl), 0);
--image-block-collage-image-title-color: hsla(var(--black-hsl), 1);
--image-block-collage-inline-link-color: hsla(var(--black-hsl), 1);
--image-block-overlap-image-button-bg-color: hsla(var(--safeDarkAccent-hsl), 1);
--image-block-overlap-image-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--image-block-overlap-image-overlay-color: hsla(var(--darkAccent-hsl), 1);
--image-block-overlap-image-subtitle-color: hsla(var(--black-hsl), 1);
--image-block-overlap-image-title-bg-color: hsla(var(--white-hsl), 1);
--image-block-overlap-image-title-color: hsla(var(--black-hsl), 1);
--image-block-overlap-inline-link-color: hsla(var(--black-hsl), 1);
--image-block-poster-image-button-bg-color: hsla(var(--safeDarkAccent-hsl), 1);
--image-block-poster-image-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--image-block-poster-image-overlay-color: hsla(var(--darkAccent-hsl), 1);
--image-block-poster-image-subtitle-color: hsla(var(--white-hsl), 1);
--image-block-poster-image-title-bg-color-v2: hsla(var(--white-hsl), 0);
--image-block-poster-image-title-color: hsla(var(--white-hsl), 1);
--image-block-poster-inline-link-color: hsla(var(--white-hsl), 1);
--image-block-stack-image-button-bg-color: hsla(var(--safeDarkAccent-hsl), 1);
--image-block-stack-image-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--image-block-stack-image-overlay-color: hsla(var(--darkAccent-hsl), 1);
--image-block-stack-image-subtitle-color: hsla(var(--black-hsl), 1);
--image-block-stack-image-title-bg-color: hsla(var(--white-hsl), 0);
--image-block-stack-image-title-color: hsla(var(--black-hsl), 1);
--image-block-stack-inline-link-color: hsla(var(--black-hsl), 1);
--list-section-banner-slideshow-arrow-background-color: hsla(var(--safeDarkAccent-hsl), 1);
--list-section-banner-slideshow-arrow-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--list-section-banner-slideshow-button-background-color: hsla(var(--safeDarkAccent-hsl), 1);
--list-section-banner-slideshow-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--list-section-banner-slideshow-card-button-background-color: hsla(var(--safeDarkAccent-hsl), 1);
--list-section-banner-slideshow-card-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--list-section-banner-slideshow-card-color: hsla(var(--lightAccent-hsl), 1);
--list-section-banner-slideshow-card-description-color: hsla(var(--black-hsl), 1);
--list-section-banner-slideshow-card-description-link-color: hsla(var(--safeDarkAccent-hsl), 1);
--list-section-banner-slideshow-card-title-color: hsla(var(--black-hsl), 1);
--list-section-banner-slideshow-description-color: hsla(var(--black-hsl), 1);
--list-section-banner-slideshow-title-color: hsla(var(--black-hsl), 1);
--list-section-carousel-arrow-background-color: hsla(var(--safeDarkAccent-hsl), 1);
--list-section-carousel-arrow-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--list-section-carousel-button-background-color: hsla(var(--safeDarkAccent-hsl), 1);
--list-section-carousel-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--list-section-carousel-card-button-background-color: hsla(var(--safeDarkAccent-hsl), 1);
--list-section-carousel-card-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--list-section-carousel-card-color: hsla(var(--lightAccent-hsl), 1);
--list-section-carousel-card-description-color: hsla(var(--black-hsl), 1);
--list-section-carousel-card-description-link-color: hsla(var(--safeDarkAccent-hsl), 1);
--list-section-carousel-card-title-color: hsla(var(--black-hsl), 1);
--list-section-carousel-description-color: hsla(var(--black-hsl), 1);
--list-section-carousel-title-color: hsla(var(--black-hsl), 1);
--list-section-simple-button-background-color: hsla(var(--safeDarkAccent-hsl), 1);
--list-section-simple-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--list-section-simple-card-button-background-color: hsla(var(--safeDarkAccent-hsl), 1);
--list-section-simple-card-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--list-section-simple-card-color: hsla(var(--lightAccent-hsl), 1);
--list-section-simple-card-description-color: hsla(var(--black-hsl), 1);
--list-section-simple-card-description-link-color: hsla(var(--safeDarkAccent-hsl), 1);
--list-section-simple-card-title-color: hsla(var(--black-hsl), 1);
--list-section-simple-description-color: hsla(var(--black-hsl), 1);
--list-section-simple-title-color: hsla(var(--black-hsl), 1);
--list-section-title-color: hsla(var(--black-hsl), 1);
--menuOverlayBackgroundColor: hsla(var(--white-hsl), 1);
--menuOverlayButtonBackgroundColor: hsla(var(--safeDarkAccent-hsl), 1);
--menuOverlayButtonTextColor: hsla(var(--safeInverseDarkAccent-hsl), 1);
--menuOverlayNavigationLinkColor: hsla(var(--black-hsl), 1);
--navigationLinkColor: hsla(var(--black-hsl), 1);
--paragraphLargeColor: hsla(var(--black-hsl), 1);
--paragraphLinkColor: hsla(var(--safeDarkAccent-hsl), 1);
--paragraphMediumColor: hsla(var(--black-hsl), 1);
--paragraphSmallColor: hsla(var(--black-hsl), 1);
--portfolio-grid-basic-title-color: hsla(var(--black-hsl), 1);
--portfolio-grid-overlay-overlay-color: hsla(var(--white-hsl), 1);
--portfolio-grid-overlay-title-color: hsla(var(--black-hsl), 1);
--portfolio-hover-follow-title-color: hsla(var(--black-hsl), 1);
--portfolio-hover-static-title-color: hsla(var(--black-hsl), 1);
--portfolio-index-background-title-color: hsla(var(--black-hsl), 1);
--primaryButtonBackgroundColor: hsla(var(--safeDarkAccent-hsl), 1);
--primaryButtonTextColor: hsla(var(--safeInverseDarkAccent-hsl), 1);
--secondaryButtonBackgroundColor: hsla(var(--safeDarkAccent-hsl), 1);
--secondaryButtonTextColor: hsla(var(--safeInverseDarkAccent-hsl), 1);
--section-inset-border-color: hsla(var(--white-hsl), 1);
--shape-block-background-color: hsla(var(--lightAccent-hsl), 1);
--shape-block-dropshadow-color: hsla(var(--lightAccent-hsl), 1);
--siteBackgroundColor: hsla(var(--white-hsl), 1);
--siteTitleColor: hsla(var(--black-hsl), 1);
--social-links-block-main-icon-color: hsla(var(--black-hsl), 1);
--social-links-block-secondary-icon-color: hsla(var(--white-hsl), 1);
--solidHeaderBackgroundColor: hsla(var(--white-hsl), 1);
--solidHeaderBorderColor: hsla(var(--black-hsl), 1);
--solidHeaderDropShadowColor: hsla(var(--black-hsl), 1);
--solidHeaderNavigationColor: hsla(var(--black-hsl), 1);
--summary-block-limited-availability-label-color: hsla(var(--black-hsl), 1);
--tertiaryButtonBackgroundColor: hsla(var(--safeDarkAccent-hsl), 1);
--tertiaryButtonTextColor: hsla(var(--safeInverseDarkAccent-hsl), 1);
--text-highlight-color: hsla(var(--safeDarkAccent-hsl), 1);
--text-highlight-color-on-background: hsla(var(--safeDarkAccent-hsl), 1);
--tweak-accordion-block-background-color: hsla(var(--lightAccent-hsl), 1);
--tweak-accordion-block-divider-color: hsla(var(--black-hsl), 1);
--tweak-accordion-block-divider-color-on-background: hsla(var(--black-hsl), 1);
--tweak-accordion-block-icon-color: hsla(var(--black-hsl), 1);
--tweak-accordion-block-icon-color-on-background: hsla(var(--black-hsl), 1);
--tweak-blog-alternating-side-by-side-list-excerpt-color: hsla(var(--black-hsl), 1);
--tweak-blog-alternating-side-by-side-list-meta-color: hsla(var(--black-hsl), 1);
--tweak-blog-alternating-side-by-side-list-read-more-color: hsla(var(--safeDarkAccent-hsl), 1);
--tweak-blog-alternating-side-by-side-list-title-color: hsla(var(--black-hsl), 1);
--tweak-blog-basic-grid-list-excerpt-color: hsla(var(--black-hsl), 1);
--tweak-blog-basic-grid-list-meta-color: hsla(var(--black-hsl), 1);
--tweak-blog-basic-grid-list-read-more-color: hsla(var(--safeDarkAccent-hsl), 1);
--tweak-blog-basic-grid-list-title-color: hsla(var(--black-hsl), 1);
--tweak-blog-item-author-profile-color: hsla(var(--black-hsl), 1);
--tweak-blog-item-comment-meta-color: hsla(var(--black-hsl), 1);
--tweak-blog-item-comment-text-color: hsla(var(--black-hsl), 1);
--tweak-blog-item-meta-color: hsla(var(--black-hsl), 1);
--tweak-blog-item-pagination-icon-color: hsla(var(--black-hsl), 1);
--tweak-blog-item-pagination-meta-color: hsla(var(--black-hsl), 1);
--tweak-blog-item-pagination-title-color: hsla(var(--black-hsl), 1);
--tweak-blog-item-title-color: hsla(var(--black-hsl), 1);
--tweak-blog-masonry-list-excerpt-color: hsla(var(--black-hsl), 1);
--tweak-blog-masonry-list-meta-color: hsla(var(--black-hsl), 1);
--tweak-blog-masonry-list-read-more-color: hsla(var(--safeDarkAccent-hsl), 1);
--tweak-blog-masonry-list-title-color: hsla(var(--black-hsl), 1);
--tweak-blog-side-by-side-list-excerpt-color: hsla(var(--black-hsl), 1);
--tweak-blog-side-by-side-list-meta-color: hsla(var(--black-hsl), 1);
--tweak-blog-side-by-side-list-read-more-color: hsla(var(--safeDarkAccent-hsl), 1);
--tweak-blog-side-by-side-list-title-color: hsla(var(--black-hsl), 1);
--tweak-blog-single-column-list-excerpt-color: hsla(var(--black-hsl), 1);
--tweak-blog-single-column-list-meta-color: hsla(var(--black-hsl), 1);
--tweak-blog-single-column-list-read-more-color: hsla(var(--safeDarkAccent-hsl), 1);
--tweak-blog-single-column-list-title-color: hsla(var(--black-hsl), 1);
--tweak-content-link-block-title-color: hsla(var(--black-hsl), 1);
--tweak-events-item-pagination-date-color: hsla(var(--black-hsl), 1);
--tweak-events-item-pagination-icon-color: hsla(var(--black-hsl), 1);
--tweak-events-item-pagination-title-color: hsla(var(--black-hsl), 1);
--tweak-form-block-background-color: hsla(var(--lightAccent-hsl), 1);
--tweak-form-block-button-background-color: hsla(var(--safeDarkAccent-hsl), 1);
--tweak-form-block-button-background-color-on-background: hsla(var(--safeDarkAccent-hsl), 1);
--tweak-form-block-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--tweak-form-block-button-text-color-on-background: hsla(var(--safeInverseDarkAccent-hsl), 1);
--tweak-form-block-caption-color: hsla(var(--black-hsl), 1);
--tweak-form-block-caption-color-on-background: hsla(var(--black-hsl), 1);
--tweak-form-block-description-color: hsla(var(--black-hsl), 1);
--tweak-form-block-description-color-on-background: hsla(var(--black-hsl), 1);
--tweak-form-block-option-color: hsla(var(--black-hsl), 1);
--tweak-form-block-option-color-on-background: hsla(var(--black-hsl), 1);
--tweak-form-block-survey-title-color: hsla(var(--black-hsl), 1);
--tweak-form-block-survey-title-color-on-background: hsla(var(--black-hsl), 1);
--tweak-form-block-title-color: hsla(var(--black-hsl), 1);
--tweak-form-block-title-color-on-background: hsla(var(--black-hsl), 1);
--tweak-gallery-icon-background-color: hsla(var(--white-hsl), 1);
--tweak-gallery-icon-color: hsla(var(--black-hsl), 1);
--tweak-gallery-lightbox-background-color: hsla(var(--white-hsl), 1);
--tweak-gallery-lightbox-icon-color: hsla(var(--black-hsl), 1);
--tweak-heading-extra-large-color-on-background: hsla(var(--black-hsl), 1);
--tweak-heading-large-color-on-background: hsla(var(--black-hsl), 1);
--tweak-heading-medium-color-on-background: hsla(var(--black-hsl), 1);
--tweak-heading-small-color-on-background: hsla(var(--black-hsl), 1);
--tweak-line-block-line-color: hsla(var(--black-hsl), 1);
--tweak-marquee-block-background-color: hsla(var(--lightAccent-hsl), 1);
--tweak-marquee-block-heading-color: hsla(var(--black-hsl), 1);
--tweak-marquee-block-heading-color-on-background: hsla(var(--black-hsl), 1);
--tweak-marquee-block-paragraph-color: hsla(var(--black-hsl), 1);
--tweak-marquee-block-paragraph-color-on-background: hsla(var(--black-hsl), 1);
--tweak-menu-block-item-description-color: hsla(var(--black-hsl), 1);
--tweak-menu-block-item-price-color: hsla(var(--black-hsl), 1);
--tweak-menu-block-item-title-color: hsla(var(--black-hsl), 1);
--tweak-menu-block-nav-color: hsla(var(--black-hsl), 1);
--tweak-menu-block-title-color: hsla(var(--black-hsl), 1);
--tweak-newsletter-block-background-color: hsla(var(--lightAccent-hsl), 1);
--tweak-newsletter-block-button-background-color: hsla(var(--safeDarkAccent-hsl), 1);
--tweak-newsletter-block-button-background-color-on-background: hsla(var(--black-hsl), 1);
--tweak-newsletter-block-button-text-color: hsla(var(--safeInverseDarkAccent-hsl), 1);
--tweak-newsletter-block-button-text-color-on-background: hsla(var(--safeInverseDarkAccent-hsl), 1);
--tweak-newsletter-block-description-color: hsla(var(--black-hsl), 1);
--tweak-newsletter-block-description-color-on-background: hsla(var(--black-hsl), 1);
--tweak-newsletter-block-footnote-color: hsla(var(--black-hsl), 1);
--tweak-newsletter-block-footnote-color-on-background: hsla(var(--black-hsl), 1);
--tweak-newsletter-block-title-color: hsla(var(--black-hsl), 1);
--tweak-newsletter-block-title-color-on-background: hsla(var(--black-hsl), 1);
--tweak-paragraph-large-color-on-background: hsla(var(--black-hsl), 1);
--tweak-paragraph-link-color-on-background: hsla(var(--safeDarkAccent-hsl), 1);
--tweak-paragraph-medium-color-on-background: hsla(var(--black-hsl), 1);
--tweak-paragraph-small-color-on-background: hsla(var(--black-hsl), 1);
--tweak-portfolio-item-pagination-icon-color: hsla(var(--black-hsl), 1);
--tweak-portfolio-item-pagination-meta-color: hsla(var(--black-hsl), 1);
--tweak-portfolio-item-pagination-title-color: hsla(var(--black-hsl), 1);
--tweak-product-basic-item-breadcumb-nav-color: hsla(var(--black-hsl), 1);
--tweak-product-basic-item-description-color: hsla(var(--black-hsl), 1);
--tweak-product-basic-item-gallery-controls-color: hsla(var(--safeInverseLightAccent-hsl), 1);
--tweak-product-basic-item-price-color: hsla(var(--black-hsl), 1);
--tweak-product-basic-item-sale-price-color: hsla(var(--accent-hsl), 1);
--tweak-product-basic-item-scarcity-color: hsla(var(--accent-hsl), 1);
--tweak-product-basic-item-title-color: hsla(var(--black-hsl), 1);
--tweak-product-basic-item-variant-fields-color: hsla(var(--black-hsl), 1);
--tweak-product-grid-text-below-list-category-nav-color: hsla(var(--black-hsl), 1);
--tweak-product-grid-text-below-list-pagination-color: hsla(var(--black-hsl), 1);
--tweak-product-grid-text-below-list-price-color: hsla(var(--black-hsl), 1);
--tweak-product-grid-text-below-list-sale-price-color: hsla(var(--accent-hsl), 1);
--tweak-product-grid-text-below-list-scarcity-color: hsla(var(--black-hsl), 1);
--tweak-product-grid-text-below-list-status-color: hsla(var(--accent-hsl), 1);
--tweak-product-grid-text-below-list-title-color: hsla(var(--black-hsl), 1);
--tweak-product-quick-view-button-color: hsla(var(--black-hsl), 1);
--tweak-product-quick-view-lightbox-controls-color: hsla(var(--black-hsl), 1);
--tweak-product-quick-view-lightbox-overlay-color: hsla(var(--white-hsl), 1);
--tweak-quote-block-background-color: hsla(var(--lightAccent-hsl), 1);
--tweak-quote-block-source-color: hsla(var(--black-hsl), 1);
--tweak-quote-block-source-color-on-background: hsla(var(--black-hsl), 1);
--tweak-quote-block-text-color: hsla(var(--black-hsl), 1);
--tweak-quote-block-text-color-on-background: hsla(var(--black-hsl), 1);
--tweak-summary-block-background-color: hsla(var(--lightAccent-hsl), 1);
--tweak-summary-block-excerpt-color: hsla(var(--black-hsl), 1);