Skip to content

Commit

Permalink
Update 7 files
Browse files Browse the repository at this point in the history
  • Loading branch information
danilowoz committed Aug 5, 2022
1 parent 3e9e8a3 commit b8c4938
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 21 deletions.
21 changes: 18 additions & 3 deletions .codesandbox/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
],
"tasks": {
"docs": {
"name": "Docs",
"name": "Website: docs",
"command": "yarn dev:docs"
},
"landing": {
"name": "Landing page",
"name": "Website: landing page",
"command": "yarn dev:landing"
},
"theme": {
"name": "Theme",
"name": "Website: theme",
"command": "yarn dev:theme"
},
"storybook": {
Expand All @@ -35,6 +35,21 @@
"name": "Build Workspace",
"command": "yarn build"
},
"build:client": {
"name": "Build: client",
"command": "yarn workspace @codesandbox/sandpack-client build",
"runAtStart": true
},
"build:themes": {
"name": "Build: themes",
"command": "yarn workspace @codesandbox/sandpack-themes build",
"runAtStart": true
},
"build:react": {
"name": "Build: react",
"command": "yarn workspace @codesandbox/sandpack-react build",
"runAtStart": true
},
"format": {
"name": "Format Workspace",
"command": "yarn format"
Expand Down
8 changes: 4 additions & 4 deletions sandpack-react/src/themes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ export const defaultDark: SandpackTheme = {
hover: "#C5C5C5",
accent: "#E5E5E5",

error: "#EA3323",
errorSurface: "#FCF1F0",
warning: "#6A4516",
warningSurface: "#FEF2C0",
error: "#FFB4A6",
errorSurface: "#690000",
warning: "#E7C400",
warningSurface: "#3A3000",
},
syntax: {
plain: "#FFFFFF",
Expand Down
4 changes: 2 additions & 2 deletions sandpack-themes/src/aquaBlue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export const aquaBlue: SandpackTheme = {

accent: "#2e7692",

error: "#ffcdca",
errorSurface: "#811e18",
error: "#811e18",
errorSurface: "#ffcdca",
},

syntax: {
Expand Down
3 changes: 0 additions & 3 deletions sandpack-themes/src/githubLight.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ export const githubLight: SandpackTheme = {
surface1: "#ffffff",
surface2: "#F3F3F3",
surface3: "#f5f5f5",

clickable: "#959da5",
base: "#24292e",
disabled: "#d1d4d8",
hover: "#24292e",

accent: "#24292e",

error: "#811e18",
errorSurface: "#ffcdca",
},
Expand Down
7 changes: 2 additions & 5 deletions sandpack-themes/src/monokaiPro.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,13 @@ export const monokaiPro: SandpackTheme = {
surface1: "#2D2A2E",
surface2: "#444344",
surface3: "#484747",

clickable: "#939293",
base: "#C1C0C1",
disabled: "#444344",
hover: "#FCFCFA",

accent: "#FFD866",

error: "#811e18",
errorSurface: "#ffcdca",
error: "#ffcdca",
errorSurface: "#c24038",
},
syntax: {
plain: "rgb(252, 252, 250)",
Expand Down
4 changes: 2 additions & 2 deletions sandpack-themes/src/nightOwl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export const nightOwl: SandpackTheme = {
disabled: "#4D4D4D",
hover: "#c5e4fd",
accent: "#c5e4fd",
error: "#811e18",
errorSurface: "#ffcdca",
error: "#ffcdca",
errorSurface: "#811e18",
},
syntax: {
plain: "#d6deeb",
Expand Down
4 changes: 2 additions & 2 deletions sandpack-themes/src/sandpackDark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export const sandpackDark: SandpackTheme = {
disabled: "#4D4D4D",
hover: "#C5C5C5",
accent: "#90e86f",
error: "#b08df8",
errorSurface: "#dac1fb",
error: "#E1CFF8",
errorSurface: "#b08df8",
},
syntax: {
plain: "#f0fdaf",
Expand Down

0 comments on commit b8c4938

Please sign in to comment.