Skip to content

Instantly share code, notes, and snippets.

@ukitaka
Created February 9, 2017 10:13
Show Gist options
  • Save ukitaka/a7d136110a7b55a5b3e7aa7d7a6801a4 to your computer and use it in GitHub Desktop.
Save ukitaka/a7d136110a7b55a5b3e7aa7d7a6801a4 to your computer and use it in GitHub Desktop.
Storyboardとxibのcolor spaceをsRGBに統一する

calibratedRGB → sRGB

% find . -name "*.storyboard" | xargs sed -i "" '-e s/colorSpace="calibratedRGB"/colorSpace="custom" customColorSpace="sRGB"/g'
% find . -name "*.xib" | xargs sed -i "" '-e s/colorSpace="calibratedRGB"/colorSpace="custom" customColorSpace="sRGB"/g'

calibratedWhite → sRGB

% find . -name "*.storyboard" | xargs sed -i "" '-e s/white="\([0-9\.]*\)" alpha="\([0-9\.]*\)" colorSpace="calibratedWhite"/red="\1" green="\1" blue="\1" alpha="\2" colorSpace="custom" customColorSpace="sRGB"/g'
% find . -name "*.xib" | xargs sed -i "" '-e s/white="\([0-9\.]*\)" alpha="\([0-9\.]*\)" colorSpace="calibratedWhite"/red="\1" green="\1" blue="\1" alpha="\2" colorSpace="custom" customColorSpace="sRGB"/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment