Skip to content

Commit

Permalink
fix color
Browse files Browse the repository at this point in the history
  • Loading branch information
bai-3 authored and bai-3 committed Oct 19, 2024
1 parent 845363e commit ec154bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/infra/pages/preloader.dart
Original file line number Diff line number Diff line change
Expand Up @@ -565,30 +565,30 @@ class _PreloaderPageState extends State<PreloaderPage> with WindowListener {
semanticsLabel: 'matrix',
width: 250.w,
// ignore: deprecated_member_use
color: constTheme.sidebarText.withAlpha(180),
color: constTheme.sidebarText.withOpacity(0.75),
),
SizedBox(height: 20.w),
Text(
"DTIM",
style: TextStyle(
fontSize: 30.w,
color: constTheme.sidebarText,
color: constTheme.sidebarText.withOpacity(0.85),
fontFamily: 'DatDot',
),
),
Text(
"WEB3 matrix",
style: TextStyle(
fontSize: 30.w,
color: constTheme.sidebarText,
color: constTheme.sidebarText.withOpacity(0.85),
fontFamily: 'DatDot',
),
),
Text(
"100% open source",
style: TextStyle(
fontSize: 30.w,
color: constTheme.sidebarText,
color: constTheme.sidebarText.withOpacity(0.85),
fontFamily: 'DatDot',
),
)
Expand Down

0 comments on commit ec154bb

Please sign in to comment.