diff --git a/src/assets/images/background.jpg b/src/assets/images/background.jpg index c002713..9c3eda0 100644 Binary files a/src/assets/images/background.jpg and b/src/assets/images/background.jpg differ diff --git a/src/assets/images/background2.jpg b/src/assets/images/background2.jpg deleted file mode 100644 index 9c3eda0..0000000 Binary files a/src/assets/images/background2.jpg and /dev/null differ diff --git a/src/components/MountItem/MountItem.css b/src/components/MountItem/MountItem.css index 30cfddb..3e65c3b 100644 --- a/src/components/MountItem/MountItem.css +++ b/src/components/MountItem/MountItem.css @@ -1,6 +1,6 @@ input.MountItemInput { margin: 0; - padding: 3px; + padding: 4px; border-radius: var(--border_radius); background: rgba(160, 160, 160, 0.1); border: none; diff --git a/src/components/UI/DropDown/DropDown.css b/src/components/UI/DropDown/DropDown.css index 76400a0..a1408b9 100644 --- a/src/components/UI/DropDown/DropDown.css +++ b/src/components/UI/DropDown/DropDown.css @@ -13,14 +13,14 @@ margin: 0; padding: 2px; border-radius: var(--border_radius); - background: rgba(10, 10, 20, 0.3); + background: rgba(10, 10, 20, 0.75); border-color: rgba(10, 10, 20, 0.9); color: var(--text_color); box-sizing: border-box; } .DropDownOption { - background: rgba(10, 10, 15, 0.8); + background: rgba(10, 10, 15, 0.9); border-color: rgba(10, 10, 20, 0.9); color: var(--text_color); } diff --git a/src/components/UI/Modal/Modal.css b/src/components/UI/Modal/Modal.css index 6682ac5..8f5a498 100644 --- a/src/components/UI/Modal/Modal.css +++ b/src/components/UI/Modal/Modal.css @@ -4,7 +4,7 @@ top: 0; width: 100vw; height: 100vh; - background-color: rgba(0, 0, 0, 0.4); + background-color: rgba(0, 0, 0, 0.65); z-index: 2000; } diff --git a/src/index.css b/src/index.css index a0fe6b9..a68834a 100644 --- a/src/index.css +++ b/src/index.css @@ -5,13 +5,13 @@ --control_background_hover: rgba(150, 150, 190, .35); --control_border: 1px solid rgba(70, 70, 70, 0.9); --control_box_shadow: 1px 1px 1px black; - --control_transparent_background: rgba(40, 40, 55, 0.85); - --control_dark_transparent_background: rgba(15, 15, 15, 0.85); + --control_transparent_background: rgba(30, 30, 50, 0.45); + --control_dark_transparent_background: rgba(15, 15, 15, 0.8); - --text_color: rgba(200, 205, 210, 0.75); - --text_color_hover: rgba(200, 205, 210, 0.75); - --text_color_error: rgba(203, 120, 120, 0.75); - --heading_text_color: rgba(161, 190, 219, 0.75); + --text_color: rgba(200, 205, 220, 0.7); + --text_color_hover: rgba(200, 205, 220, 0.7); + --text_color_error: rgba(203, 120, 120, 0.8); + --heading_text_color: rgba(161, 190, 235, 0.7); --heading_other_text_color: var(--heading_text_color); --text_color_transition: color 0.3s; diff --git a/src/index.js b/src/index.js index 3270d16..ccf8385 100644 --- a/src/index.js +++ b/src/index.js @@ -19,7 +19,7 @@ if (ipcRenderer) { ipcRenderer.on(Constants.IPC_Get_Platform_Reply, (event, arg) => { if (arg.Platform === 'linux') { const root = document.documentElement; - root.style.setProperty('--default_font_size', '15px'); + root.style.setProperty('--default_font_size', '15.3px'); } store = createAppStore(arg.Platform, arg.AppPlatform, packageJson.version);