Skip to content

Commit

Permalink
Added FireCMS preset
Browse files Browse the repository at this point in the history
  • Loading branch information
fgatti675 committed Aug 19, 2024
1 parent 6de3819 commit b75d907
Showing 1 changed file with 46 additions and 4 deletions.
50 changes: 46 additions & 4 deletions editor/src/components/presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,58 @@ export const FIRECMS_PRESET = {
"speed": 2,
"horizontalPressure": 2,
"verticalPressure": 5,
"waveFrequencyX": 1,
"waveFrequencyY": 7,
"waveAmplitude": 10,
"waveFrequencyX": 2,
"waveFrequencyY": 2,
"waveAmplitude": 5,
"shadows": 10,
"highlights": 8,
"colorBrightness": 1,
"colorSaturation": 10,
"wireframe": true,
"colorBlending": 6,
"backgroundColor": "#003FFF",
"backgroundAlpha": 1,
"resolution": 0.95
};

export const LIGHT_PRESET = {
"colors": [
{
"color": "#fbe4f4",
"enabled": true
},
{
"color": "#c9edfd",
"enabled": true
},
{
"color": "#e1e5fe",
"enabled": true
},
{
"color": "#FFFFFF",
"enabled": true
},
{
"color": "#FFFFFF",
"enabled": true
}
],
"speed": 5,
"horizontalPressure": 2,
"verticalPressure": 5,
"waveFrequencyX": 2,
"waveFrequencyY": 2,
"waveAmplitude": 2,
"shadows": 0,
"highlights": 10,
"colorBrightness": 1,
"colorSaturation": 10,
"wireframe": false,
"colorBlending": 6,
"backgroundColor": "#003FFF",
"backgroundAlpha": 1
"backgroundAlpha": 1,
"resolution": 0.9
};

export const BLOOM_PRESET = {
Expand Down Expand Up @@ -396,6 +437,7 @@ export const SPLASH_PRESET = {
export const PRESETS = {
"Stripe": STRIPE_PRESET,
"FireCMS": FIRECMS_PRESET,
"Light": LIGHT_PRESET,
"Bloom": BLOOM_PRESET,
"Prussian": PRUSSIAN_BLUE_PRESET,
// "We the root": WE_THE_ROOT_PRESET,
Expand Down

0 comments on commit b75d907

Please sign in to comment.