create

fun AlertStyling.Companion.create(note: NoteAlertStyling = NoteAlertStyling.create(), tip: TipAlertStyling = TipAlertStyling.create(), important: ImportantAlertStyling = ImportantAlertStyling.create(), warning: WarningAlertStyling = WarningAlertStyling.create(), caution: CautionAlertStyling = CautionAlertStyling.create()): AlertStyling
fun NoteAlertStyling.Companion.create(padding: PaddingValues = PaddingValues(horizontal = 16.dp, vertical = 8.dp), lineWidth: Dp = 3.dp, lineColor: Color = if (JBColor.isBright()) Color(0xFF0969DA) else Color(0xFF1F6EEB), pathEffect: PathEffect? = null, strokeCap: StrokeCap = StrokeCap.Square, titleTextStyle: TextStyle = TextStyle(fontWeight = FontWeight.Medium, color = lineColor), titleIconPath: String? = "icons/markdown/extensions/github/alerts/alert-note.svg", titleIconTint: Color = lineColor, textColor: Color = Color.Unspecified): NoteAlertStyling
fun TipAlertStyling.Companion.create(padding: PaddingValues = PaddingValues(horizontal = 16.dp, vertical = 8.dp), lineWidth: Dp = 3.dp, lineColor: Color = if (JBColor.isBright()) Color(0xFF1F883D) else Color(0xFF238636), pathEffect: PathEffect? = null, strokeCap: StrokeCap = StrokeCap.Square, titleTextStyle: TextStyle = TextStyle(fontWeight = FontWeight.Medium, color = lineColor), titleIconPath: String? = "icons/markdown/extensions/github/alerts/alert-tip.svg", titleIconTint: Color = lineColor, textColor: Color = Color.Unspecified): TipAlertStyling
fun ImportantAlertStyling.Companion.create(padding: PaddingValues = PaddingValues(horizontal = 16.dp, vertical = 8.dp), lineWidth: Dp = 3.dp, lineColor: Color = if (JBColor.isBright()) Color(0xFF8250DF) else Color(0xFF8957E5), pathEffect: PathEffect? = null, strokeCap: StrokeCap = StrokeCap.Square, titleTextStyle: TextStyle = TextStyle(fontWeight = FontWeight.Medium, color = lineColor), titleIconPath: String? = "icons/markdown/extensions/github/alerts/alert-important.svg", titleIconTint: Color = lineColor, textColor: Color = Color.Unspecified): ImportantAlertStyling
fun WarningAlertStyling.Companion.create(padding: PaddingValues = PaddingValues(horizontal = 16.dp, vertical = 8.dp), lineWidth: Dp = 3.dp, lineColor: Color = if (JBColor.isBright()) Color(0xFF9A6601) else Color(0xFF9E6A02), pathEffect: PathEffect? = null, strokeCap: StrokeCap = StrokeCap.Square, titleTextStyle: TextStyle = TextStyle(fontWeight = FontWeight.Medium, color = lineColor), titleIconPath: String? = "icons/markdown/extensions/github/alerts/alert-warning.svg", titleIconTint: Color = lineColor, textColor: Color = Color.Unspecified): WarningAlertStyling
fun CautionAlertStyling.Companion.create(padding: PaddingValues = PaddingValues(horizontal = 16.dp, vertical = 8.dp), lineWidth: Dp = 3.dp, lineColor: Color = if (JBColor.isBright()) Color(0xFFCF222E) else Color(0xFFDA3633), pathEffect: PathEffect? = null, strokeCap: StrokeCap = StrokeCap.Square, titleTextStyle: TextStyle = TextStyle(fontWeight = FontWeight.Medium, color = lineColor), titleIconPath: String? = "icons/markdown/extensions/github/alerts/alert-caution.svg", titleIconTint: Color = lineColor, textColor: Color = Color.Unspecified): CautionAlertStyling