mirror of https://github.com/pixelfed/pixelfed
commit
67434be414
@ -0,0 +1,290 @@
|
||||
export const filterEffects = [
|
||||
{
|
||||
name: '1984',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.5 },
|
||||
{ type: 'hue_rotate', angle: -30 },
|
||||
{ type: 'adjust_color', brightness: 0, contrast: 0, saturation: 0.4 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Azen',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.2 },
|
||||
{ type: 'adjust_color', brightness: 0.15, contrast: 0, saturation: 0.4 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Astairo',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.35 },
|
||||
{ type: 'adjust_color', brightness: 0.2, contrast: 0.1, saturation: 0.3 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Grasbee',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.5 },
|
||||
{ type: 'adjust_color', brightness: 0, contrast: 0.2, saturation: 0.8 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Bookrun',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.4 },
|
||||
{ type: 'adjust_color', brightness: 0.1, contrast: 0.25, saturation: -0.1 },
|
||||
{ type: 'hue_rotate', angle: -2 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Borough',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.25 },
|
||||
{ type: 'adjust_color', brightness: 0.25, contrast: 0.25, saturation: 0 },
|
||||
{ type: 'hue_rotate', angle: 5 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Farms',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.25 },
|
||||
{ type: 'adjust_color', brightness: 0.25, contrast: 0.25, saturation: 0.35 },
|
||||
{ type: 'hue_rotate', angle: -5 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Hairsadone',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.15 },
|
||||
{ type: 'adjust_color', brightness: 0.25, contrast: 0.25, saturation: 0 },
|
||||
{ type: 'hue_rotate', angle: 5 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Cleana',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.5 },
|
||||
{ type: 'adjust_color', brightness: 0.25, contrast: 0.15, saturation: -0.1 },
|
||||
{ type: 'hue_rotate', angle: -2 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Catpatch',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.35 },
|
||||
{ type: 'adjust_color', brightness: 0, contrast: .5, saturation: 0.1 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Earlyworm',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.25 },
|
||||
{ type: 'adjust_color', brightness: 0.25, contrast: 0.15, saturation: -0.1 },
|
||||
{ type: 'hue_rotate', angle: -5 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Plaid',
|
||||
ops: [{ type: 'adjust_color', brightness: 0.1, contrast: 0.1, saturation: 0 }],
|
||||
},
|
||||
{
|
||||
name: 'Kyo',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.25 },
|
||||
{ type: 'adjust_color', brightness: 0.2, contrast: 0.15, saturation: 0.35 },
|
||||
{ type: 'hue_rotate', angle: -5 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Yefe',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.4 },
|
||||
{ type: 'adjust_color', brightness: 0.2, contrast: 0.5, saturation: 0.4 },
|
||||
{ type: 'hue_rotate', angle: -10 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Godess',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.5 },
|
||||
{ type: 'adjust_color', brightness: 0.05, contrast: 0.05, saturation: 0.35 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Yards',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.25 },
|
||||
{ type: 'adjust_color', brightness: 0.2, contrast: 0.2, saturation: 0.05 },
|
||||
{ type: 'hue_rotate', angle: -15 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Quill',
|
||||
ops: [{ type: 'adjust_color', brightness: 0.25, contrast: -0.15, saturation: -1 }],
|
||||
},
|
||||
{
|
||||
name: 'Juno',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.35 },
|
||||
{ type: 'adjust_color', brightness: 0.15, contrast: 0.15, saturation: 0.8 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Rankine',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.15 },
|
||||
{ type: 'adjust_color', brightness: 0.1, contrast: 0.5, saturation: 0 },
|
||||
{ type: 'hue_rotate', angle: -10 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Mark',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.25 },
|
||||
{ type: 'adjust_color', brightness: 0.3, contrast: 0.2, saturation: 0.25 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Chill',
|
||||
ops: [{ type: 'adjust_color', brightness: 0, contrast: 0.5, saturation: 0.1 }],
|
||||
},
|
||||
{
|
||||
name: 'Van',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.25 },
|
||||
{ type: 'adjust_color', brightness: 0.05, contrast: 0.05, saturation: 1 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Apache',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.35 },
|
||||
{ type: 'adjust_color', brightness: 0.05, contrast: 0.05, saturation: 0.75 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'May',
|
||||
ops: [{ type: 'adjust_color', brightness: 0.15, contrast: 0.1, saturation: 0.1 }],
|
||||
},
|
||||
{
|
||||
name: 'Ceres',
|
||||
ops: [
|
||||
{ type: 'adjust_color', brightness: 0.4, contrast: -0.05, saturation: -1 },
|
||||
{ type: 'sepia', intensity: 0.35 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Knoxville',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.25 },
|
||||
{ type: 'adjust_color', brightness: -0.1, contrast: 0.5, saturation: 0 },
|
||||
{ type: 'hue_rotate', angle: -15 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Felicity',
|
||||
ops: [{ type: 'adjust_color', brightness: 0.25, contrast: 0.1, saturation: 0.1 }],
|
||||
},
|
||||
{
|
||||
name: 'Sandblast',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.15 },
|
||||
{ type: 'adjust_color', brightness: 0.2, contrast: 0, saturation: 0 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Daisy',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.75 },
|
||||
{ type: 'adjust_color', brightness: 0.25, contrast: -0.25, saturation: 0.4 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Elevate',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.25 },
|
||||
{ type: 'adjust_color', brightness: 0.2, contrast: 0.25, saturation: -0.1 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Nevada',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.25 },
|
||||
{ type: 'adjust_color', brightness: -0.1, contrast: 0.5, saturation: 0 },
|
||||
{ type: 'hue_rotate', angle: -15 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Futura',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.15 },
|
||||
{ type: 'adjust_color', brightness: 0.25, contrast: 0.25, saturation: 0.2 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Sleepy',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.15 },
|
||||
{ type: 'adjust_color', brightness: 0.25, contrast: 0.25, saturation: 0.2 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Steward',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.35 },
|
||||
{ type: 'adjust_color', brightness: 0.25, contrast: 0.1, saturation: 0.25 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Savoy',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.4 },
|
||||
{ type: 'adjust_color', brightness: 0.2, contrast: -0.1, saturation: 0.4 },
|
||||
{ type: 'hue_rotate', angle: -10 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Blaze',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.25 },
|
||||
{ type: 'adjust_color', brightness: -0.05, contrast: 0.5, saturation: 0 },
|
||||
{ type: 'hue_rotate', angle: -15 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Apricot',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.25 },
|
||||
{ type: 'adjust_color', brightness: 0.1, contrast: 0.1, saturation: 0 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Gloming',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.35 },
|
||||
{ type: 'adjust_color', brightness: 0.15, contrast: 0.2, saturation: 0.3 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Walter',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.35 },
|
||||
{ type: 'adjust_color', brightness: 0.25, contrast: -0.2, saturation: 0.4 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Poplar',
|
||||
ops: [
|
||||
{ type: 'adjust_color', brightness: 0.2, contrast: -0.15, saturation: -0.95 },
|
||||
{ type: 'sepia', intensity: 0.5 },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'Xenon',
|
||||
ops: [
|
||||
{ type: 'sepia', intensity: 0.45 },
|
||||
{ type: 'adjust_color', brightness: 0.75, contrast: 0.25, saturation: 0.3 },
|
||||
{ type: 'hue_rotate', angle: -5 },
|
||||
],
|
||||
},
|
||||
]
|
Loading…
Reference in New Issue