Skip to content

Commit

Permalink
New Features!
Browse files Browse the repository at this point in the history
I changed preloader and settings
  • Loading branch information
snaildos committed Sep 8, 2021
1 parent 1de577f commit 9811ceb
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/preloads/chrome-webstore.ts
@@ -1,7 +1,7 @@
export const injectChromeWebstoreInstallButton = () => {
const baseUrl =
'https://clients2.google.com/service/update2/crx?response=redirect&acceptformat=crx2,crx3&prodversion=%VERSION&x=id%3D%ID%26installsource%3Dondemand%26uc';
const ibText = 'Add to Fifo';
const ibText = 'Add to Fifo Browser';
const ibTemplate =
'<div role="button" class="dd-Va g-c-wb g-eg-ua-Uc-c-za g-c-Oc-td-jb-oa g-c" aria-label="' +
ibText +
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/constants/design.ts
Expand Up @@ -2,4 +2,4 @@ export const EASING_FUNCTION = 'cubic-bezier(0.4, 0, 0.2, 1)';

export const DIALOG_EASING = 'cubic-bezier(0.1, 0.9, 0.2, 1)';

export const ERROR_COLOR = '#b00020';
export const ERROR_COLOR = '#ED3A14';
2 changes: 1 addition & 1 deletion src/renderer/constants/dictionary.ts
Expand Up @@ -14,11 +14,11 @@ export const monthsList = [
];

export const daysList = [
'Sunday',
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
'Saturday',
'Sunday',
];
6 changes: 3 additions & 3 deletions src/renderer/constants/transparency.ts
@@ -1,8 +1,8 @@
export const transparency = {
text: {
high: 0.87,
medium: 0.6,
disabled: 0.38,
high: 0.90,
medium: 0.8,
disabled: 0.40,
},
icons: {
active: 0.87,
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/mixins/cursors.ts
Expand Up @@ -12,6 +12,6 @@ export const defaultCursor = () => `

export const coloredCursor = (cursorColor: string, color = 0) => `
-webkit-text-fill-color: transparent;
text-shadow: 0px 0px 0px rgba(${color}, ${color}, ${color}, ${transparency.text.high});
text-shadow: 0px 1px 0px rgba(${color}, ${color}, ${color}, ${transparency.text.high});
color: ${cursorColor};
`;
2 changes: 1 addition & 1 deletion src/renderer/mixins/shadows.ts
@@ -1,6 +1,6 @@
const umbraOpacity = 0.2;
const penumbraOpacity = 0.14;
const ambientOpacity = 0.12;
const ambientOpacity = 0.14;

const umbraMap = [
'0px 0px 0px 0px',
Expand Down

0 comments on commit 9811ceb

Please sign in to comment.