diff --git a/lib/widgets/toolbar.dart b/lib/widgets/toolbar.dart index 7f4ccc18..9bd561fc 100644 --- a/lib/widgets/toolbar.dart +++ b/lib/widgets/toolbar.dart @@ -487,8 +487,12 @@ class _ColorButtonState extends State { } void _changeColor(Color color) { + String hex = color.value.toRadixString(16); + if (hex.startsWith('ff')) { + hex = hex.substring(2); + } widget.controller - .formatSelection(ColorAttribute('#${color.value.toRadixString(16)}')); + .formatSelection(ColorAttribute('#$hex')); Navigator.of(context).pop(); }