diff --git a/android/gradle.properties b/android/gradle.properties
index 9b5bace2138ec06078e8d1ada235d80aff083846..604fc088e204d265443088fe8d1680c63a2b132f 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -1,5 +1,5 @@
 org.gradle.jvmargs=-Xmx1536M
 android.useAndroidX=true
 android.enableJetifier=true
-app.versionName=0.0.37
-app.versionCode=37
+app.versionName=0.0.38
+app.versionCode=38
diff --git a/fastlane/metadata/android/en-US/changelogs/38.txt b/fastlane/metadata/android/en-US/changelogs/38.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8d510c0a346747d1e1ba4d1aaa68d69a18b2c4f3
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/38.txt
@@ -0,0 +1 @@
+Fix text color, reduce cells border width.
diff --git a/fastlane/metadata/android/fr-FR/changelogs/38.txt b/fastlane/metadata/android/fr-FR/changelogs/38.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d5f5063829882158815da4ba4319c1f165ca636e
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/changelogs/38.txt
@@ -0,0 +1 @@
+Correction sur couleur de texte, diminution de la largeur des bordures des cases.
diff --git a/lib/ui/painters/board_painter.dart b/lib/ui/painters/board_painter.dart
index 2c017978b841a218d92c54aeefefaf4ddac1ff7c..d1ec5b29629529544e600da0f1cf6807fb0a4a13 100644
--- a/lib/ui/painters/board_painter.dart
+++ b/lib/ui/painters/board_painter.dart
@@ -38,7 +38,7 @@ class BoardPainter extends CustomPainter {
     }
 
     // borders
-    const double borderSize = 4;
+    const double borderSize = 2;
     final cellPaintBorder = Paint();
     cellPaintBorder.color = colorScheme.onSurface;
     cellPaintBorder.strokeWidth = borderSize;
diff --git a/lib/ui/widgets/game/indicator_top.dart b/lib/ui/widgets/game/indicator_top.dart
index 85f0c11810ddb86d0ca651af238ff1b136c15d74..610037e62041a72e5b0cbc246740eb8b35f0e8f4 100644
--- a/lib/ui/widgets/game/indicator_top.dart
+++ b/lib/ui/widgets/game/indicator_top.dart
@@ -31,7 +31,7 @@ class TopIndicator extends StatelessWidget {
                   style: const TextStyle(
                     fontSize: 35,
                     fontWeight: FontWeight.w600,
-                    color: Colors.black,
+                    color: Colors.grey,
                   ),
                 ),
               ],
diff --git a/pubspec.yaml b/pubspec.yaml
index 2127446ea37e47c8a4e2d9af0cef7cf8ab79ed59..5e4adf9edb3365b8d4d013bb786614487cf26b61 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -2,7 +2,7 @@ name: colors
 description: Fill the board, a colorfull game!
 
 publish_to: 'none'
-version: 0.0.37+37
+version: 0.0.38+38
 
 environment:
   sdk: '^3.0.0'