-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #592 from VKCOM/4.39.0
4.39.0
- Loading branch information
Showing
9 changed files
with
9,570 additions
and
1,247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10,745 changes: 9,507 additions & 1,238 deletions
10,745
src/build/__snapshots__/snapthots.test.ts.snap
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { ThemeCssVars } from '@/interfaces/general'; | ||
import { ColorDescription, ColorWithStates } from '@/interfaces/general/colors'; | ||
import { ParadigmTheme, ParadigmThemeDescription } from '@/interfaces/namespaces/paradigm'; | ||
|
||
export interface LocalWorkspaceLandingsColorDescriptionStruct { | ||
workspaceLandingsColorBackgroundDark1: ColorDescription; | ||
workspaceLandingsColorBackgroundDark2: ColorDescription; | ||
workspaceLandingsColorBackgroundBlue: ColorDescription; | ||
workspaceLandingsColorTextGray: ColorDescription; | ||
workspaceLandingsColorTextGreen: ColorDescription; | ||
} | ||
|
||
export type WorkspaceLandingsLocalColors = { | ||
[key in keyof LocalWorkspaceLandingsColorDescriptionStruct]: ColorWithStates; | ||
}; | ||
|
||
export interface ThemeWorkspaceLandings extends ParadigmTheme, WorkspaceLandingsLocalColors {} | ||
|
||
export interface ThemeWorkspaceLandingsDescription extends ParadigmThemeDescription { | ||
colors: LocalWorkspaceLandingsColorDescriptionStruct & ParadigmThemeDescription['colors']; | ||
} | ||
|
||
export interface ThemeWorkspaceLandingsCssVars | ||
extends ThemeCssVars<ThemeWorkspaceLandings, 'breakpoints'> {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { ThemeWorkspaceLandingsDescription } from '@/interfaces/themes/workspaceLandings'; | ||
import { darkTheme } from '@/themeDescriptions/base/paradigm'; | ||
|
||
export const workspaceLandingsTheme: ThemeWorkspaceLandingsDescription = { | ||
...darkTheme, | ||
themeName: 'workspaceLandings', | ||
themeNameBase: 'workspaceLandings', | ||
colors: { | ||
...darkTheme.colors, | ||
workspaceLandingsColorBackgroundDark1: '#090909', | ||
workspaceLandingsColorBackgroundDark2: '#1D1D1F', | ||
workspaceLandingsColorBackgroundBlue: '#2688EB', | ||
workspaceLandingsColorTextGray: '#B3B3B4', | ||
workspaceLandingsColorTextGreen: '#00D3E6', | ||
}, | ||
}; |