creek

The AI Image Editor of 2030
commit 265e7baf124624556dd72378a51f1a637ec296a5
parent 02a1489c1539affce3b151f7c0ffe2690ff187c7
Author: maydayv7 <maydayv7@gmail.com>
Date:   Wed,  3 Dec 2025 07:23:13 +0530

Update stylesheet assets

Diffstat:
Massets/stylesheet/lighting/backlit.png | 0
Massets/stylesheet/lighting/diffused.png | 0
Massets/stylesheet/lighting/dramatic-contrast.png | 0
Massets/stylesheet/lighting/flat-lighting.png | 0
Massets/stylesheet/lighting/soft-light.png | 0
Dassets/stylesheet/lighting/spectacular-highlights.png | 0
Aassets/stylesheet/lighting/specular-highlights.png | 0
Massets/stylesheet/lighting/studio-lighting.png | 0
Aassets/stylesheet/texture/brick.png | 0
Aassets/stylesheet/texture/denim.png | 0
Aassets/stylesheet/texture/fabric.png | 0
Aassets/stylesheet/texture/ground.png | 0
Aassets/stylesheet/texture/stone.png | 0
Mlib/ui/pages/stylesheet_page.dart | 22+++++++++-------------
14 files changed, 9 insertions(+), 13 deletions(-)

diff --git a/assets/stylesheet/lighting/backlit.png b/assets/stylesheet/lighting/backlit.png Binary files differ. diff --git a/assets/stylesheet/lighting/diffused.png b/assets/stylesheet/lighting/diffused.png Binary files differ. diff --git a/assets/stylesheet/lighting/dramatic-contrast.png b/assets/stylesheet/lighting/dramatic-contrast.png Binary files differ. diff --git a/assets/stylesheet/lighting/flat-lighting.png b/assets/stylesheet/lighting/flat-lighting.png Binary files differ. diff --git a/assets/stylesheet/lighting/soft-light.png b/assets/stylesheet/lighting/soft-light.png Binary files differ. diff --git a/assets/stylesheet/lighting/spectacular-highlights.png b/assets/stylesheet/lighting/spectacular-highlights.png Binary files differ. diff --git a/assets/stylesheet/lighting/specular-highlights.png b/assets/stylesheet/lighting/specular-highlights.png Binary files differ. diff --git a/assets/stylesheet/lighting/studio-lighting.png b/assets/stylesheet/lighting/studio-lighting.png Binary files differ. diff --git a/assets/stylesheet/texture/brick.png b/assets/stylesheet/texture/brick.png Binary files differ. diff --git a/assets/stylesheet/texture/denim.png b/assets/stylesheet/texture/denim.png Binary files differ. diff --git a/assets/stylesheet/texture/fabric.png b/assets/stylesheet/texture/fabric.png Binary files differ. diff --git a/assets/stylesheet/texture/ground.png b/assets/stylesheet/texture/ground.png Binary files differ. diff --git a/assets/stylesheet/texture/stone.png b/assets/stylesheet/texture/stone.png Binary files differ. diff --git a/lib/ui/pages/stylesheet_page.dart b/lib/ui/pages/stylesheet_page.dart @@ -43,8 +43,7 @@ class _StylesheetPageState extends State<StylesheetPage> { 'dramaticcontrast': 'assets/stylesheet/lighting/dramatic-contrast.png', 'flatlighting': 'assets/stylesheet/lighting/flat-lighting.png', 'softlight': 'assets/stylesheet/lighting/soft-light.png', - 'spectacularhighlights': 'assets/stylesheet/lighting/spectacular-highlights.png', - 'specularhighlights': 'assets/stylesheet/lighting/spectacular-highlights.png', + 'specularhighlights': 'assets/stylesheet/lighting/specular-highlights.png', 'studiolighting': 'assets/stylesheet/lighting/studio-lighting.png', }; @@ -52,30 +51,27 @@ class _StylesheetPageState extends State<StylesheetPage> { 'glossy': 'assets/stylesheet/material-look/glossy.png', 'laminated': 'assets/stylesheet/material-look/laminated.png', 'matte': 'assets/stylesheet/material-look/matte.png', - 'metallic': 'assets/stylesheet/material-look/metallic.png', 'mettalic': 'assets/stylesheet/material-look/metallic.png', 'organic': 'assets/stylesheet/material-look/organic.png', 'porcelain': 'assets/stylesheet/material-look/porcelain.png', 'wetlook': 'assets/stylesheet/material-look/wet-look.png', - 'wooden': 'assets/stylesheet/material-look/wooden.png', 'wood': 'assets/stylesheet/material-look/wooden.png', - 'plastic': 'assets/stylesheet/material-look/laminated.png', }; final Map<String, String> _textureAssets = { 'bokehbackground': 'assets/stylesheet/texture/bokeh-background.png', + 'brick': 'assets/stylesheet/texture/brick.png', 'concrete': 'assets/stylesheet/texture/concrete.png', - 'stone': 'assets/stylesheet/texture/concrete.png', - 'motifs': 'assets/stylesheet/texture/motifs.png', + 'denim': 'assets/stylesheet/texture/denim.png', + 'fabric': 'assets/stylesheet/texture/fabric.png', + 'grid': 'assets/stylesheet/texture/subtle-grid.png', + 'ground': 'assets/stylesheet/texture/ground.png', 'motif': 'assets/stylesheet/texture/motifs.png', - 'newspapertexture': 'assets/stylesheet/texture/newspaper-texture.png', 'newspaper': 'assets/stylesheet/texture/newspaper-texture.png', - 'papergrain': 'assets/stylesheet/texture/paper-grain.png', - 'printedpattern': 'assets/stylesheet/texture/printed-pattern.png', + 'paper': 'assets/stylesheet/texture/paper-grain.png', + 'pattern': 'assets/stylesheet/texture/printed-pattern.png', + 'stone': 'assets/stylesheet/texture/stone.png', 'studiobackdrop': 'assets/stylesheet/texture/studio-backdrop.png', - 'studio_backdrop': 'assets/stylesheet/texture/studio-backdrop.png', - 'subtlegrid': 'assets/stylesheet/texture/subtle-grid.png', - 'grid': 'assets/stylesheet/texture/subtle-grid.png', }; @override