File tree 2 files changed +18
-0
lines changed
components/src/main/java/com/ifeel/components/ui
components/generic/textfield
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,10 @@ import androidx.compose.ui.unit.dp
29
29
import androidx.compose.ui.unit.sp
30
30
import com.ifeel.components.R
31
31
import com.ifeel.components.ui.components.common.text.ErrorText
32
+ import com.ifeel.components.ui.theme.color_background_7
32
33
import com.ifeel.components.ui.theme.color_brand_primary_600
33
34
import com.ifeel.components.ui.theme.color_danger_500
35
+ import com.ifeel.components.ui.theme.color_text_100
34
36
import com.ifeel.components.ui.theme.color_text_300
35
37
import com.ifeel.components.ui.theme.color_text_400
36
38
import com.ifeel.components.ui.theme.color_text_500
@@ -100,6 +102,9 @@ fun OutlinedTextField(
100
102
errorContainerColor = Color .White ,
101
103
unfocusedContainerColor = Color .White ,
102
104
focusedContainerColor = Color .White ,
105
+ disabledTextColor = color_text_300,
106
+ disabledBorderColor = color_text_100,
107
+ disabledContainerColor = color_background_7,
103
108
)
104
109
)
105
110
Original file line number Diff line number Diff line change @@ -38,4 +38,17 @@ sealed class CaptionTextStyle(
38
38
fontSize = 12 .sp,
39
39
lineHeight = 16 .sp
40
40
)
41
+
42
+ /* *
43
+ * @property color [color_text_600].
44
+ * @property fontSize 12sp.
45
+ * @property lineHeight 16sp.
46
+ * @property fontWeight [FontWeight.SemiBold].
47
+ */
48
+ data object Caption12Semibold : CaptionTextStyle (
49
+ color = color_text_600,
50
+ fontSize = 12 .sp,
51
+ lineHeight = 16 .sp,
52
+ fontWeight = FontWeight .SemiBold
53
+ )
41
54
}
You can’t perform that action at this time.
0 commit comments