Color blind users and default color scheme

Has anyone else had to support color blind users, and found that the default OBIEE color scheme (e.g. for line graphs) didn't work for them?
I was going to file an SR about this, but wanted to see what other folks were doing, if anything.
-John

Hi Dog Lover!
Have you had any luck finding information since your original posting?
There are resources on the internet that offer those with normal color vision a glimpse at what colors a color deficient observer might perceive, but I haven't heard of any tools for doing the reverse...
The actual in-the-brain process of color sensation isn't fully understood yet, so anything that simulates what someone with color deficiency might see is an educated guess at best.
Check out www.colorhelper.com. There's a software product called the eyePilot that allows you to distinguish a single color apart from any others on a web page or other sources of visual media. I don't know how accurate it is, and I haven't tried it myself, but there's a trial version available so perhaps it could be useful.
Your best bet would be to have someone you know with normal color vision check your web pages and give you feedback on what colors work well together. You can also check color coordinate values (RGB, Lab, etc.) on images in Photoshop by using the eyedropper tool and the "INFO" information window.
Hope this helps!

Similar Messages

  • Need to create users and default passwords in su10

    Hi Experts,
    I have a small prob generating the passwords for the MASS users creation in Su10.How could we generate the same password for all the users in the Mass creation.Is there any process to set the default passowrds for ll users.
    Regards,
    Surya.

    Hi
    Use SCATT script for this, better than SU10
    For more help
    http://209.85.175.104/search?q=cache:MMJJi_P39VUJ:www.dop.wa.gov/NR/rdonlyres/04284671-03DB-472B-A406-E52D7155C3FB/0/SSO_Decentralized_Security_Handbook_v3e.docSAPgeneratepasswordsformassusersusingsu10&hl=en&ct=clnk&cd=11&gl=in
    Regards
    Bhaskar
    Edited by: bhaskar1818 on Jul 26, 2008 10:21 AM

  • Confusion over user and schema

    hi all i am new to oracle
    as far as my understanding goes in oracle for every user by default an schema
    is created where tables and other objects are granted to the user please correct me if i am wrong
    now my problem is that i created user but its not getting reflected in the schema
    shouldnt the schema get created automatically
    i am confused what should i check for
    thanks in advance

    hello,
    First of all you should know the terminology.
    Schema -> Collection of objects (Tables, Views, Indexes, Sequences etc.,)
    Example: Scott/tiger (Is a sample oracle user) In database terminology it is named as Scott's Schema.
    When you create a new user in oracle the user would be empty with no objects. Unless you have previleges to create objects.
    SRI>create user junk identified by junk
    2 default tablespace users
    3 temporary tablespace temp;
    User created.
    Elapsed: 00:00:00.15
    SRI>conn junk/junk@sri
    ERROR:
    ORA-01045: user JUNK lacks CREATE SESSION privilege; logon denied
    Warning: You are no longer connected to ORACLE.
    SRI>conn sri/sri@sri
    Connected.
    SRI>grant connect to junk;
    Grant succeeded.
    Elapsed: 00:00:00.03
    SRI>conn junk/junk@sri
    Connected.
    SRI>select * from tab;
    no rows selected
    SRI>create table x(id number(10));
    create table x(id number(10))
    ERROR at line 1:
    ORA-01031: insufficient privileges
    Elapsed: 00:00:00.00
    SRI>conn sri/sri@sri
    Connected.
    SRI>grant resource to junk;
    Grant succeeded.
    Elapsed: 00:00:00.01
    SRI>conn junk/junk@sri
    Connected.
    SRI>create table x(id number(10));
    Table created.
    SRI>select * from tab;
    TNAME TABTYPE CLUSTERID
    X TABLE
    Hope this info helps you to start with :)
    cheers
    -Sri

  • How to export a user and their schema from one 10g database to another?

    Hi,
    I would like to export a user and their entire schema from one 10g database to another one. How do I do this?
    thx
    adam

    If you want to export a user and the schema owned to the user, and import to the same user in a different database, or a different user in the same database, you can use the exp and imp commands as described in the Utilities manual.
    These commands are very versatile and have a lot of options - well worth learning properly. To give you a simplistic shortcut, see below - I create a user 'test_move', create some objects in the schema, export, create a new user in the database 'new_move' and import.
    oracle@fuzzy:~> sqlplus system/?????
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat Mar 11 21:46:54 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> create user test_move identified by test_move;
    User created.
    SQL> grant create session, resource to test_move;
    Grant succeeded.
    SQL> connect test_move/test_move
    Connected.
    SQL> create table test (x number);
    Table created.
    SQL> insert into test values (1);
    1 row created.
    SQL> exit
    Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    oracle@fuzzy:~> exp system/????? file=exp.dmp owner=test_move
    Export: Release 10.2.0.1.0 - Production on Sat Mar 11 21:48:34 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Export done in AL32UTF8 character set and AL16UTF16 NCHAR character set
    About to export specified users ...
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user TEST_MOVE
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user TEST_MOVE
    About to export TEST_MOVE's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export TEST_MOVE's tables via Conventional Path ...
    . . exporting table                           TEST          1 rows exported
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    . exporting operators
    . exporting referential integrity constraints
    . exporting triggers
    . exporting indextypes
    . exporting bitmap, functional and extensible indexes
    . exporting posttables actions
    . exporting materialized views
    . exporting snapshot logs
    . exporting job queues
    . exporting refresh groups and children
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    . exporting statistics
    Export terminated successfully without warnings.
    oracle@fuzzy:~> sqlplus system/?????
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat Mar 11 21:49:23 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> create user new_move identified by new_move;
    User created.
    SQL> grant create session, resource to new_move;
    Grant succeeded.
    SQL> exit
    Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    oracle@fuzzy:~> imp system/????? file=exp.dmp fromuser=test_move touser=new_move
    Import: Release 10.2.0.1.0 - Production on Sat Mar 11 21:50:12 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Export file created by EXPORT:V10.02.01 via conventional path
    import done in AL32UTF8 character set and AL16UTF16 NCHAR character set
    . importing TEST_MOVE's objects into NEW_MOVE
    . . importing table                         "TEST"          1 rows imported
    Import terminated successfully without warnings.
    oracle@fuzzy:~>                                                       If moving between databases, remember to set the SID properly before the import. If keeping the same userid, skip the from/to stuff in the import.
    There are many variations on the theme ...
    You can simplify this. You can select tables individually. You can use a parameter file. You can transport all the constraints and data. You can skip the data and only move the definitions. You can get some help (imp/exp help=yes).
    And, if it's all 10g, there is a new and improved facility called expdp/impdp (dp = data pump) which has a lot more capability as well, including direct transfer (no intermediate file) together with suspend/restart. Also documented in the Utilities manual.

  • How do I change the default color scheme in Dreamweaver CS6?

    Hi All
    I just updated to CS6 on my work computer from CS5 on my personal computer (preferences and stuff were not transferred), and I'm trying to figure out how I can import my custom color scheme that I was using in CS5. In CS5 I was able to replace the Colors.xml file instead of going through each individual color option. I haven't had the same success with CS6.
    In CS5 the Colors.xml file was located at this path (Mac)
    /Users/%name%/Library/Application Support/Adobe/Dreamweaver CS5/%localization(en_US)%/Configuration/CodeColoring
    The problem with CS6 is that there is no Dreamweaver CS6 folder at that path after "Adobe/"
    Has anyone else encountered this problem? Any solutions? Looking at code on a white background is hurting my eyes!

    Do you think this maybe has to do with Mountain Lion?
    Here's a screenshot of no Dreamweaver CS6 folder in Library/../..
    And no, it's not in the "Adobe Creative Suite 6 Design and Web Premium" folder either. I keep going through all of the folders hoping the Dreamweaver cs6 folder will show up, but nothing! Thanks for your help guys. If you think of anything else, please respond!

  • CLAF - How to just change the color-scheme of default laf of Oracle EBiz

    How to change the color scheme of the default oracle ebusiness suites laf?
    When we tried the CLAF UI, there is no option to extend the oracle-desktop.xss.
    It gives only the base-desktop (which is different from the default Oracle Ebusiness laf).
    Have anyone done this ?
    Any suggestions/help is appreciated..?

    the default LAF is Browser one and the OA personalization guide tells what we can't extend it.
    It reads so stupid what i was not able to believe it.. But seems true.
    When you need to make a simple modification and keeping the look and feel, you can't.
    I changed only one icon but you can't give blaf (even if you modify the extends property in the look and feel metadata.xml
    Had you try to copy all blafs styles in your BLAF ? (that could be a workaround even if is it not upgradable ?)
    Or, open SR ?
    Anyway, I'm interesting by an answer too.
    Regards

  • Is there a way to switch back to the old color scheme for the keypad? The new black-on-white color scheme is more difficult to see and use for the visually impaired.

    Is there a way to switch back to the old color scheme for the keypad? After upgrading to ios 6, the keypad switched to a black-on-white color scheme.  I have a severe visual impairment and found the previous white-on-black color scheme much easier to see and use. 
    The inverted colors option doesn’t make things look all that better.    My dad, who does not have any serious vision problems, has put off upgrading his iphone because of the color scheme changes.    

    I have exactly the same concern. It seems it would be a simple fix for Apple to allow users to turn off the camera (and even the mic) while keeping FaceTime open -- especially now that it turns out FaceTime must remain open in order to send and receive iPhone calls on a Mac.
    I like to think this new functionality of FaceTime will be baked into a future release of Yosemite, as the current setup has that not-quite-finished feel of a work in progress. In the meantime, there's nothing like a little piece of Post-It stuck over the camera to keep the NSA from watching your face as you type a post to the Apple Support Communities.

  • Changing default color scheme when exporting ALV report to Excel spreadshee

    Hi all,
    We have a bunch of FI reports created using OOPS in abap.  Each of the reports has the functionality to be exported to an excel spreadsheet.  When exporting to Excel, the headers are a very dark brown color, making them difficult to read and it has been requested that they are shaded a lighter color.  I have not defined any sort of color scheme within the report itself, and I was wondering if there was a way to change the color scheme when exporting the report to excel.  Let me know if there is anything that can be done, thanks!

    check ur fcat

  • Help and suggestions for color scheme for multiple flavor package design

    I need help choosing colors for a multiple flavor food product line.
    My objective in this post is to know how to create or acquire the palette I will need in order to proceed with design, mock ups, marketing collateral etc.
    This project requires a color scheme that has enough contrast and variation to represent up to 24 flavors of food packages per type or line of products. Each product flavor or flavor combination (the name of the item, such as Cherry Cocoa Almond or Apricot Vanilla Bean etc.) in the line will be represented by a single color. The product packaging will be white on solid color. The medium will be laser print on gloss label stock.
    The problem is that many flavors will use similar colors. Chocolate items will have different hues of browns and Maple or Nut flavors will also use brown tones. Likewise Orange, Apricot and Mango will use similar hues of orange etc. I know the problem could be solved with dual or multiple colors but I do not have that option for this project. All of the packaging is white on single color. There are no accent colors used.
    I need to generate the palette before designing the packaging in order to create mock ups for print and then photography for print marketing collateral and internet marketing assets etc.
    Does anyone have a good strategy for this or know of any resources available?
    I am using:
    Dell Precision T1700 (64-bit)
    Windows 7 Professional (Service Pack 1)
    Dual screens (not calibrated to Pantone or printer)
    Printer: Konica Minolta bizhub c224e
    Pantone+ Color Bridge Coated and Uncoated book
    Adobe CC, AI, PS, ID etc.
    I am printing onto gloss labels for mock ups and will be using images for web.
    I would also be interested in knowing how to calibrate these devices.
    Thanks!

    When it comes to design and design sense, sometimes just the name of the item could generate ideas.  There really is no right or wrong way to come up with concepts.  But, reaching out to other people is a good way of going about it.  In product development, I always recommend putting together some sort of focus group and brainstorm ideas back and forth.  In larger corporate product departments you would have product managers defining their product descriptions.  You might have a marketing group head get involved.  Well, I know I am not telling you anything you didn't already know.  I'm just saying that, as a designer, I always present my ideas to a few people to get feedback.  And, based on that, I can then further develope the idea or dump it and start over.  I recently was involved with a new product development and came up with some really great conceptuals.  But, then I was told by a product manager that sometimes you have to roll-out something preliminary and, in a few years of selling tons of great items, you then revamp the entire line with a tag that reads "new and improved".  This might work in your case where you have limited resources initially.  Hope you do well.  You could always post screen grabs of what you are thinking and we could give you feedback, too.  Just a thought.

  • Are the Kuler color schemes and individual colors associated with pantone codes?

    Are the Kuler color schemes and individual colors associated with pantone codes?
    How do you find the pantone reference for a color in a color scheme?

    Hi Monika,
    What is the reason that it is possible to search for (explore) color themes from within the Color Themes panel in InDesign and Photoshop, but not in Illustrator? Seems a bit odd…
    Cheers,
    Marinka

  • Color: Schemes--Exploration and generation

    In the posts that follow you'll find links to color scheme generators and comparison charts, plus utilities and applications which can be used to explore the relationships between different colors in a variety of ways. These can be useful for building color sets that will look good on your website or in print projects.
    Some work directly in your browser through either Java, JavaScript or with a Flash or Shockwave plugin; Others are applications or utilities that you download and use as separate programs or in conjunction with other programs.
    Depending on which site or application you choose, they will display the colors side-by-side and also show the codes for these colors in different formats, i.e.: RGB, hexadecimal, CMYK, Lab, HSB, HTML named colors, etc. Additionally, there are some which will create downloadable text files containing a list of the colors you choose, and others will even generate swatch files that you can save and which can be imported directly into your favorite applications.

    I referred to "HTML "named colors" above.
    This refers to a list of 147 colors
    defined by the Scalable Vector Graphics (SVG) Specification
    which use common language, such as red, blue, green, black, etc. When used as part of HTML/CSS/XML coding these real-language names are interpreted by browsers the same way as the RGB/Hex code colors they represent.
    So, instead of coding a color as "#00FFFF" or using RGB values such as "0,255,255" you may simply type "Aqua" and the proper color will be displayed when the code is rendered onscreen.
    Below are links to this list of Named Colors at a few sites:
    http://www.w3schools.com/html/html_colornames.asp
    http://www.aumha.org/html/colorsb.htm
    See the following link for boatloads of more information on named colors and a vast tree of links. There are many standards and systems for naming colors, and most of them aren't specific to being displayed by a web browser. However, by cross-referencing and by doing a little work and calculation you should be able to come close to replicating named oil paint or house paint colors, for example, for use in a browser. Just keep in mind the differences between reflective and transmissive color, and remember that not all screen colors are printable, and not all print colors can be displayed onscreen.
    http://www.december.com/html/spec/colorspot.html

  • Heading and color scheme of the columns for the detail report

    Is it possible to have a heading and color scheme of the columns for the reports displayed on drill down of a query in WAD?

    Try the stylesheet in the properties of web template.

  • Changing color scheme on Transitions and Themes

    I would like to use the Newscast theme to create an iMovie; however, I CANNOT use the red color scheme for my audience.  How do I change the color scheme for the transitions?
    thanks in advance for any advise!

    sararandazzo8 wrote:
    …  How do I change the color scheme for the transitions?
    short answer: you can't.
    long answer: most animations and 'moving' elements within iM are realized with a technology called QUARTZ. those animations are 'hardwired' in iM. You'd need a Developer-tool, tons of expertise and have to ignore the EULA you signed on installation/usage of iMovie, changing these parts of iLife.
    I tried to change colors and fonts in some preset Titles - technically possible, but not within 'normal' usage
    Make a enhancement suggestion, allowing iM to use plug-ins, add-ons, 'Jam Packs' in future versions of iMovie:
    http://www.apple.com/feedback/imovie.html

  • When I open new window browser has inverted color scheme and no window title.

    When I open 1st window in FF top of the page looks usual - like this http://imagestun.com/hosting/kartinki/ff1.jpg
    But when I try to open something in a new window, this new window has strange color scheme at the top and no title, like this
    http://imagestun.com/hosting/kartinki/ff2.jpg
    If I switch from window mode to full screen mode and vice versa everything gets to look normal.
    I've used Classic Theme Reestorer addon, but the same problem occurs when this addon is uninstalled. Restaring computer, reinstalling firefox etc didn't help, I still get these annoying white letters in the main menu when I try to open 2 or more firefox windows.
    Is there any way to fix it?

    Thanks, I followed your advice and disabled everyting then started turning addons one by one. The problem was caused by Hola Unblocker, now everything is ok.

  • Color Scheme Problems in Ultiboard

    Hi,  I've been having trouble with the color scheme problems in Ultiboard ever since I upgraded form 10.0 to 10.1.  The color schemes will not save in Ultiboard 10.1, even with the new patch 10.1.0.1, this problem is persistant.
    Here's the problem in detail: 
    In global Preferences, I click on "Colors", and then New Scheme, give it a name, and I define my colors.  However, when I open a new file, the colors are reverted to the default.  When I check the preferences again, the name that I have given to my color scheme is labeled as "User settings", and they are the same as the default colors.
    This is really annoying as every time I open a file, I have to change the color schemes.  It seems like these settings are not being saved in the user-configuration file for some reason or another.
    I have tried deleting my user-config file in the user directories, and started new user-config files, but to no avail, the problem is persistent.  The color just will not stay.
    How do I get around this problem?
    -J 

    Hello,
    Thanks for reporting this. I was able to reproduce the issue and created a defect report, ID: 112869.
    Fernando D.
    National Instruments

Maybe you are looking for

  • After using Overdrive Media Console for Mac to listen to book on my iPod, my iPod won't work!

    The book went on my iPod and played fine. BUT after trying to update my podcasts and put on more books (from Audible.com) I found that NOTHING would go back on my IPod. I reformatted it, and now I have my music, but only some of my books, and NONE of

  • Corrupt Files in Adobe Bridge Cache

    Bridge has left me with corrupted files in Bridge Cache which I cannot delete, or scan with Macafee or look at with any other program I have. When I access the folder containing the corrupt files my PC just hangs. I have the latest versions of Photos

  • Failure doing very simple "replace value of node ..." on an attribute

    Hello (Working on DBXML 2.5.13. on Windows Server 2003) With the following document in a container: <village xmlns="carrapateira.info"> <pictures quantity="124"/> </village> When trying to replace the value of the attribute 'quantity' with the dbxml

  • Crystal reports Server XI

    Hi I have installed Crystal Report Server XI (not XI R2). But in desktoplaunch folder I do not see OpenDoc folder also there is no openDocument.jsp. Also IN menu there is option op InfoeView but when I click on it it says resource not available. are

  • "The service RASReportFactory could not be found" error

    I receive the error: "The service RASReportFactory could not be found" when I call the following line of code: IReportAppFactory reportAppFactory = (IReportAppFactory) es.getService("RASReportFactory"); I believe this is due to a missing JAR file in