Skip to content

Commit

Permalink
Arm colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Lesches committed Apr 18, 2024
1 parent 1f97d2f commit 14eacdd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/src/pages/arm.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class ArmPainterTop extends CustomPainter {
void paint(Canvas canvas, Size size){
screen = min(size.width, size.height);
final paint = Paint()
..color = Colors.purple
..color = Colors.grey.shade800
..strokeWidth = screen / 50
..strokeCap = StrokeCap.round;

Expand Down Expand Up @@ -110,13 +110,13 @@ class ArmPainterSide extends CustomPainter {
];

final lineColors = [
Colors.red,
Colors.green,
Colors.blue,
Colors.grey.shade800,
Colors.grey.shade700,
Colors.grey.shade600,
];

final firstCirclePaint = Paint()
..color = Colors.red
..color = Colors.grey.shade800
..style = PaintingStyle.fill;

canvas.drawCircle(points[0], screen / 40, firstCirclePaint);
Expand Down

0 comments on commit 14eacdd

Please sign in to comment.