lipgloss 0.1.1

Style definitions for nice terminal layouts. The core of the lipgloss-rs library.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
//! Unset methods for Style
//!
//! This module provides methods for removing or resetting style properties back to their
//! default values. These methods are essential for style composition and dynamic styling
//! where you need to selectively remove certain styling attributes while preserving others.
//!
//! All unset methods follow a consistent pattern:
//! - They reset the internal property to its default value
//! - They remove the property from the style's property set
//! - They return `Self` for method chaining
//!
//! # Categories of Unset Methods
//!
//! - **Text Attributes**: `unset_bold()`, `unset_italic()`, `unset_underline()`, etc.
//! - **Colors**: `unset_foreground()`, `unset_background()`
//! - **Sizing**: `unset_width()`, `unset_height()`, `unset_max_width()`, etc.
//! - **Alignment**: `unset_align()`, `unset_align_horizontal()`, `unset_align_vertical()`
//! - **Spacing**: `unset_padding()`, `unset_margins()` and individual edge methods
//! - **Borders**: `unset_border_style()` and individual border methods
//! - **Other**: `unset_tab_width()`, `unset_transform()`, `unset_string()`
//!
//! # Examples
//!
//! ```rust
//! use lipgloss::Style;
//!
//! // Create a heavily styled style
//! let mut style = Style::new()
//!     .bold(true)
//!     .italic(true)
//!     .foreground("red")
//!     .background("blue")
//!     .padding(2, 2, 2, 2)
//!     .margin(1, 1, 1, 1);
//!
//! // Selectively remove some attributes
//! style = style
//!     .unset_bold()           // Remove bold
//!     .unset_background()     // Remove background color
//!     .unset_padding();       // Remove all padding
//!
//! // The style now only has italic, red foreground, and margin
//! let result = style.render("Hello World");
//! ```
//!
//! # Style Inheritance and Composition
//!
//! Unset methods are particularly useful when working with style inheritance:
//!
//! ```rust
//! use lipgloss::Style;
//!
//! // Base style for all text
//! let base_style = Style::new()
//!     .bold(true)
//!     .foreground("blue")
//!     .padding(1, 1, 1, 1);
//!
//! // Create a variant that removes certain properties
//! let subtitle_style = base_style
//!     .unset_bold()           // Subtitles shouldn't be bold
//!     .italic(true)           // But they should be italic
//!     .unset_padding();       // And have no padding
//! ```

use crate::border::hidden_border;
use crate::position::{LEFT, TOP};
use crate::style::{properties::*, Style};

impl Style {
    // ---------- Text attribute unset methods ----------

    /// Removes the bold text attribute from this style.
    ///
    /// This resets the bold setting to its default (false) and removes it from the
    /// style's property set. Text rendered with this style will no longer be bold.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .bold(true)
    ///     .italic(true)
    ///     .unset_bold();  // Remove bold, keep italic
    ///
    /// // Text will be italic but not bold
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_bold(mut self) -> Self {
        self.unset_prop(BOLD_KEY);
        self.set_attr(ATTR_BOLD, false);
        self
    }

    /// Removes the italic text attribute from this style.
    ///
    /// This resets the italic setting to its default (false) and removes it from the
    /// style's property set. Text rendered with this style will no longer be italic.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .italic(true)
    ///     .bold(true)
    ///     .unset_italic();  // Remove italic, keep bold
    ///
    /// // Text will be bold but not italic
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_italic(mut self) -> Self {
        self.unset_prop(ITALIC_KEY);
        self.set_attr(ATTR_ITALIC, false);
        self
    }

    /// Removes the underline text attribute from this style.
    ///
    /// This resets the underline setting to its default (false) and removes it from the
    /// style's property set. Text rendered with this style will no longer be underlined.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .underline(true)
    ///     .bold(true)
    ///     .unset_underline();  // Remove underline, keep bold
    ///
    /// // Text will be bold but not underlined
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_underline(mut self) -> Self {
        self.unset_prop(UNDERLINE_KEY);
        self.set_attr(ATTR_UNDERLINE, false);
        self
    }

    /// Removes the strikethrough text attribute from this style.
    ///
    /// This resets the strikethrough setting to its default (false) and removes it from the
    /// style's property set. Text rendered with this style will no longer have strikethrough.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .strikethrough(true)
    ///     .italic(true)
    ///     .unset_strikethrough();  // Remove strikethrough, keep italic
    ///
    /// // Text will be italic but not struck through
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_strikethrough(mut self) -> Self {
        self.unset_prop(STRIKETHROUGH_KEY);
        self.set_attr(ATTR_STRIKETHROUGH, false);
        self
    }

    /// Removes the reverse video text attribute from this style.
    ///
    /// This resets the reverse setting to its default (false) and removes it from the
    /// style's property set. Text rendered with this style will no longer have reversed
    /// foreground and background colors.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .reverse(true)
    ///     .bold(true)
    ///     .unset_reverse();  // Remove reverse, keep bold
    ///
    /// // Text will be bold but colors won't be reversed
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_reverse(mut self) -> Self {
        self.unset_prop(REVERSE_KEY);
        self.set_attr(ATTR_REVERSE, false);
        self
    }

    /// Removes the blink text attribute from this style.
    ///
    /// This resets the blink setting to its default (false) and removes it from the
    /// style's property set. Text rendered with this style will no longer blink.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .blink(true)
    ///     .bold(true)
    ///     .unset_blink();  // Remove blink, keep bold
    ///
    /// // Text will be bold but won't blink
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_blink(mut self) -> Self {
        self.unset_prop(BLINK_KEY);
        self.set_attr(ATTR_BLINK, false);
        self
    }

    /// Removes the faint (dim) text attribute from this style.
    ///
    /// This resets the faint setting to its default (false) and removes it from the
    /// style's property set. Text rendered with this style will no longer be dimmed.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .faint(true)
    ///     .italic(true)
    ///     .unset_faint();  // Remove faint, keep italic
    ///
    /// // Text will be italic but at normal brightness
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_faint(mut self) -> Self {
        self.unset_prop(FAINT_KEY);
        self.set_attr(ATTR_FAINT, false);
        self
    }

    /// Removes the underline spaces attribute from this style.
    ///
    /// When disabled, spaces within underlined text will no longer be underlined.
    /// This allows for more precise control over underline appearance.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_underline_spaces(mut self) -> Self {
        self.unset_prop(UNDERLINE_SPACES_KEY);
        self.set_attr(ATTR_UNDERLINE_SPACES, false);
        self
    }

    /// Removes the strikethrough spaces attribute from this style.
    ///
    /// When disabled, spaces within strikethrough text will no longer be struck through.
    /// This allows for more precise control over strikethrough appearance.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_strikethrough_spaces(mut self) -> Self {
        self.unset_prop(STRIKETHROUGH_SPACES_KEY);
        self.set_attr(ATTR_STRIKETHROUGH_SPACES, false);
        self
    }

    /// Removes the color whitespace attribute from this style.
    ///
    /// When disabled, whitespace characters (spaces, tabs) will not be colored
    /// with the foreground/background colors of this style.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_color_whitespace(mut self) -> Self {
        self.unset_prop(COLOR_WHITESPACE_KEY);
        self.set_attr(ATTR_COLOR_WHITESPACE, false);
        self
    }

    /// Removes the inline rendering attribute from this style.
    ///
    /// When disabled, the style will revert to block-level rendering behavior,
    /// which may include margins, padding, and borders affecting layout.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_inline(mut self) -> Self {
        self.unset_prop(INLINE_KEY);
        self.set_attr(ATTR_INLINE, false);
        self
    }

    // ---------- Color unset methods ----------

    /// Removes the foreground color from this style.
    ///
    /// This resets the foreground color to `None` and removes it from the style's property set.
    /// Text rendered with this style will use the terminal's default foreground color.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .foreground("red")
    ///     .background("blue")
    ///     .unset_foreground();  // Remove red foreground, keep blue background
    ///
    /// // Text will have blue background but default foreground color
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_foreground(mut self) -> Self {
        self.unset_prop(FOREGROUND_KEY);
        self.fg_color = None;
        self
    }

    /// Removes the background color from this style.
    ///
    /// This resets the background color to `None` and removes it from the style's property set.
    /// Text rendered with this style will use the terminal's default background color.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, Color};
    ///
    /// let style = Style::new()
    ///     .foreground("red")
    ///     .background("blue")
    ///     .unset_background();  // Remove blue background, keep red foreground
    ///
    /// // Text will have red foreground but default background color
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_background(mut self) -> Self {
        self.unset_prop(BACKGROUND_KEY);
        self.bg_color = None;
        self
    }

    // ---------- Size unset methods ----------

    /// Removes the width constraint from this style.
    ///
    /// This resets the width to 0 (unconstrained) and removes it from the style's property set.
    /// Text rendered with this style will use its natural width.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_width(mut self) -> Self {
        self.unset_prop(WIDTH_KEY);
        self.width = 0;
        self
    }

    /// Removes the height constraint from this style.
    ///
    /// This resets the height to 0 (unconstrained) and removes it from the style's property set.
    /// Text rendered with this style will use its natural height.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_height(mut self) -> Self {
        self.unset_prop(HEIGHT_KEY);
        self.height = 0;
        self
    }

    /// Removes the maximum width constraint from this style.
    ///
    /// This resets the max width to 0 (unconstrained) and removes it from the style's property set.
    /// Text rendered with this style will not be limited by a maximum width.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_max_width(mut self) -> Self {
        self.unset_prop(MAX_WIDTH_KEY);
        self.max_width = 0;
        self
    }

    /// Removes the maximum height constraint from this style.
    ///
    /// This resets the max height to 0 (unconstrained) and removes it from the style's property set.
    /// Text rendered with this style will not be limited by a maximum height.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_max_height(mut self) -> Self {
        self.unset_prop(MAX_HEIGHT_KEY);
        self.max_height = 0;
        self
    }

    // ---------- Alignment unset methods ----------

    /// Removes both horizontal and vertical alignment settings from this style.
    ///
    /// This resets both alignments to their defaults (LEFT and TOP) and removes them
    /// from the style's property set. Text will be aligned to the top-left.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    /// use lipgloss::position::CENTER;
    ///
    /// let style = Style::new()
    ///     .align_horizontal(CENTER)
    ///     .align_vertical(CENTER)
    ///     .unset_align();  // Reset both to defaults
    ///
    /// // Text will now be aligned to top-left
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_align(mut self) -> Self {
        self.unset_prop(ALIGN_HORIZONTAL_KEY);
        self.unset_prop(ALIGN_VERTICAL_KEY);
        self.align_horizontal = LEFT;
        self.align_vertical = TOP;
        self
    }

    /// Removes the horizontal alignment setting from this style.
    ///
    /// This resets horizontal alignment to its default (LEFT) and removes it
    /// from the style's property set.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_align_horizontal(mut self) -> Self {
        self.unset_prop(ALIGN_HORIZONTAL_KEY);
        self.align_horizontal = LEFT;
        self
    }

    /// Removes the vertical alignment setting from this style.
    ///
    /// This resets vertical alignment to its default (TOP) and removes it
    /// from the style's property set.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_align_vertical(mut self) -> Self {
        self.unset_prop(ALIGN_VERTICAL_KEY);
        self.align_vertical = TOP;
        self
    }

    // ---------- Padding unset methods ----------

    /// Removes all padding from this style.
    ///
    /// This resets all padding values (top, right, bottom, left) to 0 and removes
    /// them from the style's property set.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .padding(2, 2, 2, 2)
    ///     .margin(1, 1, 1, 1)
    ///     .unset_padding();  // Remove all padding, keep margin
    ///
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_padding(mut self) -> Self {
        self.unset_prop(PADDING_TOP_KEY);
        self.unset_prop(PADDING_RIGHT_KEY);
        self.unset_prop(PADDING_BOTTOM_KEY);
        self.unset_prop(PADDING_LEFT_KEY);
        self.padding_top = 0;
        self.padding_right = 0;
        self.padding_bottom = 0;
        self.padding_left = 0;
        self
    }

    /// Removes the top padding from this style.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_padding_top(mut self) -> Self {
        self.unset_prop(PADDING_TOP_KEY);
        self.padding_top = 0;
        self
    }

    /// Removes the right padding from this style.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_padding_right(mut self) -> Self {
        self.unset_prop(PADDING_RIGHT_KEY);
        self.padding_right = 0;
        self
    }

    /// Removes the bottom padding from this style.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_padding_bottom(mut self) -> Self {
        self.unset_prop(PADDING_BOTTOM_KEY);
        self.padding_bottom = 0;
        self
    }

    /// Removes the left padding from this style.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_padding_left(mut self) -> Self {
        self.unset_prop(PADDING_LEFT_KEY);
        self.padding_left = 0;
        self
    }

    // ---------- Margin unset methods ----------

    /// Removes all margins from this style.
    ///
    /// This resets all margin values (top, right, bottom, left) to 0, removes the
    /// margin background color, and removes them from the style's property set.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .margin(2, 2, 2, 2)
    ///     .margin_background("blue")
    ///     .padding(1, 1, 1, 1)
    ///     .unset_margins();  // Remove all margins, keep padding
    ///
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_margins(mut self) -> Self {
        self.unset_prop(MARGIN_TOP_KEY);
        self.unset_prop(MARGIN_RIGHT_KEY);
        self.unset_prop(MARGIN_BOTTOM_KEY);
        self.unset_prop(MARGIN_LEFT_KEY);
        self.unset_prop(MARGIN_BACKGROUND_KEY);
        self.margin_top = 0;
        self.margin_right = 0;
        self.margin_bottom = 0;
        self.margin_left = 0;
        self.margin_bg_color = None;
        self
    }

    /// Removes the top margin from this style.
    ///
    /// This resets the top margin to 0 and removes it from the style's property set.
    /// The content will no longer have spacing above it.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .margin(2, 1, 2, 1)  // top, right, bottom, left
    ///     .unset_margin_top();  // Remove only top margin
    ///
    /// // Content will have 0 top margin, but keep right(1), bottom(2), left(1)
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_margin_top(mut self) -> Self {
        self.unset_prop(MARGIN_TOP_KEY);
        self.margin_top = 0;
        self
    }

    /// Removes the right margin from this style.
    ///
    /// This resets the right margin to 0 and removes it from the style's property set.
    /// The content will no longer have spacing to its right.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .margin(2, 3, 2, 1)  // top, right, bottom, left
    ///     .unset_margin_right();  // Remove only right margin
    ///
    /// // Content will have 0 right margin, but keep top(2), bottom(2), left(1)
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_margin_right(mut self) -> Self {
        self.unset_prop(MARGIN_RIGHT_KEY);
        self.margin_right = 0;
        self
    }

    /// Removes the bottom margin from this style.
    ///
    /// This resets the bottom margin to 0 and removes it from the style's property set.
    /// The content will no longer have spacing below it.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .margin(2, 1, 3, 1)  // top, right, bottom, left
    ///     .unset_margin_bottom();  // Remove only bottom margin
    ///
    /// // Content will have 0 bottom margin, but keep top(2), right(1), left(1)
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_margin_bottom(mut self) -> Self {
        self.unset_prop(MARGIN_BOTTOM_KEY);
        self.margin_bottom = 0;
        self
    }

    /// Removes the left margin from this style.
    ///
    /// This resets the left margin to 0 and removes it from the style's property set.
    /// The content will no longer have spacing to its left.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .margin(2, 1, 2, 3)  // top, right, bottom, left
    ///     .unset_margin_left();  // Remove only left margin
    ///
    /// // Content will have 0 left margin, but keep top(2), right(1), bottom(2)
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_margin_left(mut self) -> Self {
        self.unset_prop(MARGIN_LEFT_KEY);
        self.margin_left = 0;
        self
    }

    /// Removes the margin background color from this style.
    ///
    /// This resets the margin background color to `None` and removes it from the style's
    /// property set. Margin areas will use the terminal's default background color.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .margin(2, 2, 2, 2)
    ///     .margin_background("blue")
    ///     .background("red")
    ///     .unset_margin_background();  // Remove margin color, keep content color
    ///
    /// // Content will have red background, but margin areas use default color
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_margin_background(mut self) -> Self {
        self.unset_prop(MARGIN_BACKGROUND_KEY);
        self.margin_bg_color = None;
        self
    }

    // ---------- Border unset methods ----------

    /// Removes the border style and disables all border edges.
    ///
    /// This resets the border style to hidden and disables all border edges
    /// (top, right, bottom, left). It effectively removes all border rendering.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_foreground("red")
    ///     .unset_border_style();  // Remove all borders
    ///
    /// // Text will have no borders
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_style(mut self) -> Self {
        self.unset_prop(BORDER_STYLE_KEY);
        self.unset_prop(BORDER_TOP_KEY);
        self.unset_prop(BORDER_RIGHT_KEY);
        self.unset_prop(BORDER_BOTTOM_KEY);
        self.unset_prop(BORDER_LEFT_KEY);
        self.border_style = hidden_border();
        self.set_attr(ATTR_BORDER_TOP, false);
        self.set_attr(ATTR_BORDER_RIGHT, false);
        self.set_attr(ATTR_BORDER_BOTTOM, false);
        self.set_attr(ATTR_BORDER_LEFT, false);
        self
    }

    /// Removes the top border from this style.
    ///
    /// This disables the top border edge and removes it from the style's property set.
    /// The top edge of the content will not have a border.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_top(true)
    ///     .border_bottom(true)
    ///     .unset_border_top();  // Remove top border, keep bottom
    ///
    /// // Content will have bottom border but no top border
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_top(mut self) -> Self {
        self.unset_prop(BORDER_TOP_KEY);
        self.set_attr(ATTR_BORDER_TOP, false);
        self
    }

    /// Removes the right border from this style.
    ///
    /// This disables the right border edge and removes it from the style's property set.
    /// The right edge of the content will not have a border.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_right(true)
    ///     .border_left(true)
    ///     .unset_border_right();  // Remove right border, keep left
    ///
    /// // Content will have left border but no right border
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_right(mut self) -> Self {
        self.unset_prop(BORDER_RIGHT_KEY);
        self.set_attr(ATTR_BORDER_RIGHT, false);
        self
    }

    /// Removes the bottom border from this style.
    ///
    /// This disables the bottom border edge and removes it from the style's property set.
    /// The bottom edge of the content will not have a border.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_top(true)
    ///     .border_bottom(true)
    ///     .unset_border_bottom();  // Remove bottom border, keep top
    ///
    /// // Content will have top border but no bottom border
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_bottom(mut self) -> Self {
        self.unset_prop(BORDER_BOTTOM_KEY);
        self.set_attr(ATTR_BORDER_BOTTOM, false);
        self
    }

    /// Removes the left border from this style.
    ///
    /// This disables the left border edge and removes it from the style's property set.
    /// The left edge of the content will not have a border.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_left(true)
    ///     .border_right(true)
    ///     .unset_border_left();  // Remove left border, keep right
    ///
    /// // Content will have right border but no left border
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_left(mut self) -> Self {
        self.unset_prop(BORDER_LEFT_KEY);
        self.set_attr(ATTR_BORDER_LEFT, false);
        self
    }

    /// Removes all border foreground colors from this style.
    ///
    /// This resets all border edge foreground colors (top, right, bottom, left) to `None`
    /// and removes them from the style's property set. Borders will use default colors.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_border_foreground(mut self) -> Self {
        self.unset_prop(BORDER_TOP_FOREGROUND_KEY);
        self.unset_prop(BORDER_RIGHT_FOREGROUND_KEY);
        self.unset_prop(BORDER_BOTTOM_FOREGROUND_KEY);
        self.unset_prop(BORDER_LEFT_FOREGROUND_KEY);
        self.border_top_fg_color = None;
        self.border_right_fg_color = None;
        self.border_bottom_fg_color = None;
        self.border_left_fg_color = None;
        self
    }

    /// Removes all border background colors from this style.
    ///
    /// This resets all border edge background colors (top, right, bottom, left) to `None`
    /// and removes them from the style's property set. Borders will use default colors.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    pub fn unset_border_background(mut self) -> Self {
        self.unset_prop(BORDER_TOP_BACKGROUND_KEY);
        self.unset_prop(BORDER_RIGHT_BACKGROUND_KEY);
        self.unset_prop(BORDER_BOTTOM_BACKGROUND_KEY);
        self.unset_prop(BORDER_LEFT_BACKGROUND_KEY);
        self.border_top_bg_color = None;
        self.border_right_bg_color = None;
        self.border_bottom_bg_color = None;
        self.border_left_bg_color = None;
        self
    }

    /// Removes the top border foreground color from this style.
    ///
    /// This resets the top border foreground color to `None` and removes it from the
    /// style's property set. The top border will use the default foreground color.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_top_foreground("red")
    ///     .border_bottom_foreground("blue")
    ///     .unset_border_top_foreground();  // Remove top color, keep bottom
    ///
    /// // Top border uses default color, bottom border is blue
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_top_foreground(mut self) -> Self {
        self.unset_prop(BORDER_TOP_FOREGROUND_KEY);
        self.border_top_fg_color = None;
        self
    }

    /// Removes the right border foreground color from this style.
    ///
    /// This resets the right border foreground color to `None` and removes it from the
    /// style's property set. The right border will use the default foreground color.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_right_foreground("red")
    ///     .border_left_foreground("blue")
    ///     .unset_border_right_foreground();  // Remove right color, keep left
    ///
    /// // Right border uses default color, left border is blue
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_right_foreground(mut self) -> Self {
        self.unset_prop(BORDER_RIGHT_FOREGROUND_KEY);
        self.border_right_fg_color = None;
        self
    }

    /// Removes the bottom border foreground color from this style.
    ///
    /// This resets the bottom border foreground color to `None` and removes it from the
    /// style's property set. The bottom border will use the default foreground color.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_bottom_foreground("red")
    ///     .border_top_foreground("blue")
    ///     .unset_border_bottom_foreground();  // Remove bottom color, keep top
    ///
    /// // Bottom border uses default color, top border is blue
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_bottom_foreground(mut self) -> Self {
        self.unset_prop(BORDER_BOTTOM_FOREGROUND_KEY);
        self.border_bottom_fg_color = None;
        self
    }

    /// Removes the left border foreground color from this style.
    ///
    /// This resets the left border foreground color to `None` and removes it from the
    /// style's property set. The left border will use the default foreground color.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_left_foreground("red")
    ///     .border_right_foreground("blue")
    ///     .unset_border_left_foreground();  // Remove left color, keep right
    ///
    /// // Left border uses default color, right border is blue
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_left_foreground(mut self) -> Self {
        self.unset_prop(BORDER_LEFT_FOREGROUND_KEY);
        self.border_left_fg_color = None;
        self
    }

    /// Removes the top border background color from this style.
    ///
    /// This resets the top border background color to `None` and removes it from the
    /// style's property set. The top border will use the default background color.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_top_background("red")
    ///     .border_bottom_background("blue")
    ///     .unset_border_top_background();  // Remove top color, keep bottom
    ///
    /// // Top border uses default background, bottom border has blue background
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_top_background(mut self) -> Self {
        self.unset_prop(BORDER_TOP_BACKGROUND_KEY);
        self.border_top_bg_color = None;
        self
    }

    /// Removes the right border background color from this style.
    ///
    /// This resets the right border background color to `None` and removes it from the
    /// style's property set. The right border will use the default background color.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_right_background("red")
    ///     .border_left_background("blue")
    ///     .unset_border_right_background();  // Remove right color, keep left
    ///
    /// // Right border uses default background, left border has blue background
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_right_background(mut self) -> Self {
        self.unset_prop(BORDER_RIGHT_BACKGROUND_KEY);
        self.border_right_bg_color = None;
        self
    }

    /// Removes the bottom border background color from this style.
    ///
    /// This resets the bottom border background color to `None` and removes it from the
    /// style's property set. The bottom border will use the default background color.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_bottom_background("red")
    ///     .border_top_background("blue")
    ///     .unset_border_bottom_background();  // Remove bottom color, keep top
    ///
    /// // Bottom border uses default background, top border has blue background
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_bottom_background(mut self) -> Self {
        self.unset_prop(BORDER_BOTTOM_BACKGROUND_KEY);
        self.border_bottom_bg_color = None;
        self
    }

    /// Removes the left border background color from this style.
    ///
    /// This resets the left border background color to `None` and removes it from the
    /// style's property set. The left border will use the default background color.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::{Style, normal_border};
    ///
    /// let style = Style::new()
    ///     .border_style(normal_border())
    ///     .border_left_background("red")
    ///     .border_right_background("blue")
    ///     .unset_border_left_background();  // Remove left color, keep right
    ///
    /// // Left border uses default background, right border has blue background
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_border_left_background(mut self) -> Self {
        self.unset_prop(BORDER_LEFT_BACKGROUND_KEY);
        self.border_left_bg_color = None;
        self
    }

    // ---------- Other unset methods ----------

    /// Removes the custom tab width setting from this style.
    ///
    /// This resets the tab width to its default value and removes it from
    /// the style's property set. Tabs will be rendered using the default width.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .tab_width(8)
    ///     .bold(true)
    ///     .unset_tab_width();  // Reset to default tab width, keep bold
    ///
    /// let result = style.render("Text\twith\ttabs");
    /// ```
    pub fn unset_tab_width(mut self) -> Self {
        self.unset_prop(TAB_WIDTH_KEY);
        self.tab_width = TAB_WIDTH_DEFAULT;
        self
    }

    /// Removes the text transformation function from this style.
    ///
    /// This resets the transform function to `None` and removes it from
    /// the style's property set. Text will be rendered without transformation.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let style = Style::new()
    ///     .transform(|text| text.to_uppercase())
    ///     .bold(true)
    ///     .unset_transform();  // Remove transformation, keep bold
    ///
    /// // Text will not be transformed to uppercase
    /// let result = style.render("Hello World");
    /// ```
    pub fn unset_transform(mut self) -> Self {
        self.unset_prop(TRANSFORM_KEY);
        self.transform = None;
        self
    }

    /// Clears the underlying string value from this style.
    ///
    /// This resets the internal string value to an empty string. This is typically
    /// used when you want to reuse a style with different content.
    ///
    /// # Returns
    ///
    /// Returns the modified `Style` instance for method chaining.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use lipgloss::Style;
    ///
    /// let mut style = Style::new().bold(true);
    /// // First render with initial content
    /// let _first = style.render("First message");
    ///
    /// // Clear the content but keep styling
    /// style = style.unset_string();
    ///
    /// // Reuse the style with new content
    /// let result = style.render("Second message");
    /// ```
    pub fn unset_string(mut self) -> Self {
        self.value = String::new();
        self
    }
}