我正在尝试使用AppleScript来更改Finder窗口的背景颜色并遇到这段代码片段,这似乎有用......但是,我不确定颜色数组的逻辑...
tell the icon view options of the front Finder window
set the background color to {52942, 54484, 31097}
end tell
Run Code Online (Sandbox Code Playgroud)
AppleScript魔术的{52942,54484,31097}是指什么?它对我来说看起来不像RGB ......我怎样才能获得像红色(#ff0000 | 255,0,0)或者更好的霓虹青色(#00f6ff | 0,246,255)?