Skip to content

Commit b555e31

Browse files
committed
use different color to make it clear the text is customized
1 parent bba2102 commit b555e31

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

static/usage/v7/input/theming/css-properties/angular/global_css.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ ion-input.custom.ios .input-bottom .helper-text,
99
ion-input.custom.ios .input-bottom .counter,
1010
ion-input.custom.md .input-bottom .helper-text,
1111
ion-input.custom.md .input-bottom .counter {
12-
color: var(--ion-color-step-700, #373737);
12+
color: var(--ion-color-primary);
1313
}
1414
```

static/usage/v7/input/theming/css-properties/demo.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
ion-input.custom.ios .input-bottom .counter,
3232
ion-input.custom.md .input-bottom .helper-text,
3333
ion-input.custom.md .input-bottom .counter {
34-
color: green;
34+
color: var(--ion-color-primary);
3535
}
3636
</style>
3737
</head>

static/usage/v7/input/theming/css-properties/javascript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
ion-input.custom.ios .input-bottom .counter,
2626
ion-input.custom.md .input-bottom .helper-text,
2727
ion-input.custom.md .input-bottom .counter {
28-
color: var(--ion-color-step-700, #373737);
28+
color: var(--ion-color-primary);
2929
}
3030
</style>
3131
```

static/usage/v7/input/theming/css-properties/react/main_css.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ ion-input.custom.ios .input-bottom .helper-text,
1515
ion-input.custom.ios .input-bottom .counter,
1616
ion-input.custom.md .input-bottom .helper-text,
1717
ion-input.custom.md .input-bottom .counter {
18-
color: var(--ion-color-step-700, #373737);
18+
color: var(--ion-color-primary);
1919
}
2020
```

static/usage/v7/input/theming/css-properties/vue.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
ion-input.custom.ios .input-bottom .counter,
3737
ion-input.custom.md .input-bottom .helper-text,
3838
ion-input.custom.md .input-bottom .counter {
39-
color: var(--ion-color-step-700, #373737);
39+
color: var(--ion-color-primary);
4040
}
4141
</style>
4242
```

static/usage/v7/textarea/theming/angular/global_css.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ ion-textarea.custom.ios .textarea-bottom .helper-text,
99
ion-textarea.custom.ios .textarea-bottom .counter,
1010
ion-textarea.custom.md .textarea-bottom .helper-text,
1111
ion-textarea.custom.md .textarea-bottom .counter {
12-
color: #373737;
12+
color: var(--ion-color-primary);
1313
}
1414
```

static/usage/v7/textarea/theming/demo.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
ion-textarea.custom.ios .textarea-bottom .counter,
2727
ion-textarea.custom.md .textarea-bottom .helper-text,
2828
ion-textarea.custom.md .textarea-bottom .counter {
29-
color: #373737;
29+
color: var(--ion-color-primary);
3030
}
3131
</style>
3232
</head>

static/usage/v7/textarea/theming/javascript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
ion-textarea.custom.ios .textarea-bottom .counter,
2323
ion-textarea.custom.md .textarea-bottom .helper-text,
2424
ion-textarea.custom.md .textarea-bottom .counter {
25-
color: #373737;
25+
color: var(--ion-color-primary);
2626
}
2727
</style>
2828
```

static/usage/v7/textarea/theming/react/main_css.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ ion-textarea.custom.ios .textarea-bottom .helper-text,
1212
ion-textarea.custom.ios .textarea-bottom .counter,
1313
ion-textarea.custom.md .textarea-bottom .helper-text,
1414
ion-textarea.custom.md .textarea-bottom .counter {
15-
color: #373737;
15+
color: var(--ion-color-primary);
1616
}
1717
```

static/usage/v7/textarea/theming/vue.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
ion-textarea.custom.ios .textarea-bottom .counter,
1414
ion-textarea.custom.md .textarea-bottom .helper-text,
1515
ion-textarea.custom.md .textarea-bottom .counter {
16-
color: #373737;
16+
color: var(--ion-color-primary);
1717
}
1818
</style>
1919

0 commit comments

Comments
 (0)