summaryrefslogtreecommitdiffstats
path: root/src/styles
diff options
context:
space:
mode:
authorRoger Zanoni <rzanoni@igalia.com>2024-01-03 16:13:11 -0300
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2024-01-29 12:08:06 +0000
commite57fc753b3a083ddea52dbe4cd003261e836b2d4 (patch)
tree16ad0c2d7cea4ecd21b5aa485ae38dd04f2a1e18 /src/styles
parent52aabdb011279871468269802e056f0ec48511e4 (diff)
Style refresh with square grid motif and blue palette.
It tries to follow the visual language of the flutter sample apps. Bug-AGL: SPEC-4041 Signed-off-by: Roger Zanoni <rzanoni@igalia.com> Change-Id: I68f4ebf82ac5cb5dbe856e9ffe5fca26f47b3442
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/app.scss8
-rw-r--r--src/styles/landscape.scss5
-rw-r--r--src/styles/portrait.scss5
3 files changed, 10 insertions, 8 deletions
diff --git a/src/styles/app.scss b/src/styles/app.scss
index cbba7fc..18af381 100644
--- a/src/styles/app.scss
+++ b/src/styles/app.scss
@@ -1,7 +1,7 @@
$colors: (
- primary: #00ADDC,
- font: #FFFFFF,
- grey: #848286
+ primary: #2962ff,
+ font: #c1d8ff,
+ grey: #1c2d92
);
@media (max-device-width: 720px) and (orientation: portrait) {
@import "main.scss";
@@ -27,4 +27,4 @@ $colors: (
@import "1080.scss";
}
-@import "style.css"; \ No newline at end of file
+@import "style.css";
diff --git a/src/styles/landscape.scss b/src/styles/landscape.scss
index d215960..ee504e9 100644
--- a/src/styles/landscape.scss
+++ b/src/styles/landscape.scss
@@ -1,7 +1,8 @@
@media (orientation: landscape) {
html {
- background-image: url('../images/horizontal_background.png');
+ background-image: url('../images/dashboardTextures.svg');
+ background-color: black;
}
body {
@@ -14,4 +15,4 @@
}
}
}
-} \ No newline at end of file
+}
diff --git a/src/styles/portrait.scss b/src/styles/portrait.scss
index eff553c..ab28917 100644
--- a/src/styles/portrait.scss
+++ b/src/styles/portrait.scss
@@ -1,7 +1,8 @@
@media (orientation: portrait) {
html {
- background-image: url('../images/vertical_background.png');
+ background-image: url('../images/dashboardTextures.svg');
+ background-color: black;
}
body {
@@ -9,4 +10,4 @@
width: 100%;
}
}
-} \ No newline at end of file
+}