Help with creating color schemes in Illustrator file

I'm repeating a particular background image on each page of a calendar and would like to change its colors on each page. There are 2 gradients in the image which use a total of four different colors. I'm not at all skilled in color theory and was wondering if anyone can please tell me if there's an easy way to come up with harmonious color combinations that I can apply to the original Illustrator file? My shortcut solution would be to convert the color to grayscale and apply a color overlay, but the image just looks flat when I do that. I would prefer to adjust the gradients individually but just don't know how to find compatible colors.
Here's a preview of the image followed by a DropBox link to the Illustrator file.
https://dl.dropboxusercontent.com/u/52882455/background1.ai
Thanks!

Couple ideas for you:
First, try using the color wheel on color.adobe.com.  Select the middle color and add your hex code to the color.  The app will automatically show you analogous colors.  See an example here. You can also experiment with the other color rules in the Color Rule menu (just click on one of them).
Second, take a look at themes created by others.  If you are looking generally for colors that work well with yellow, you can browse the most popular themes and spot some which use yellow. 
I hope that helps.

Similar Messages

  • Help With Creating HR Schema on Oracle 10g

    Hi;
    I am new to oracle and need help to setup HR schema to practice tutorial for Oracle SQL Developer 1.2. Any help and guidence will be highly appreciated.
    Found this script "hr_code"in C:\oracle\product\10.1.0\Db_1\demo\schema\human_resources but do not know how to execute script.
    Thanks,
    Chuky

    Hi, you must execute the script hr_main.sql from SQL*Plus with a sysdba connection.
    sqlplus /nolog
    connect / as sysdba
    @C:\oracle\product\10.1.0\Db_1\demo\schema\human_resources\hr_main.sql
    For more information you can review the next link.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14198/installation.htm#sthref33
    Luck.
    Have a good day.
    Regards.

  • I need help with Creating Key Pairs

    Hello,
    I need help with Creating Key Pairs, I generate key pais with aba provider, but the keys generated are not base 64.
    the class is :
    import java.io.*;
    import java.math.BigInteger;
    import java.security.*;
    import java.security.spec.*;
    import java.security.interfaces.*;
    import javax.crypto.*;
    import javax.crypto.spec.*;
    import au.net.aba.crypto.provider.ABAProvider;
    class CreateKeyPairs {
    private static KeyPair keyPair;
    private static KeyPairGenerator pairGenerator;
    private static PrivateKey privateKey;
    private static PublicKey publicKey;
    public static void main(String[] args) throws Exception {
    if (args.length != 2) {
    System.out.println("Usage: java CreateKeyParis public_key_file_name privete_key_file_name");
    return;
    createKeys();
    saveKey(args[0],publicKey);
    saveKey(args[1],privateKey);
    private static void createKeys() throws Exception {
    Security.addProvider(new ABAProvider());
    pairGenerator = KeyPairGenerator.getInstance("RSA","ABA");
    pairGenerator.initialize(1024, new SecureRandom());
    keyPair = pairGenerator.generateKeyPair();
    privateKey = keyPair.getPrivate();
    publicKey = keyPair.getPublic();
    private synchronized static void saveKey(String filename,PrivateKey key) throws Exception {
    ObjectOutputStream out= new ObjectOutputStream(new FileOutputStream(filename));
    out.writeObject(key);
    out.close();
    private synchronized static void saveKey(String filename,PublicKey key) throws Exception {
    ObjectOutputStream out= new ObjectOutputStream( new FileOutputStream(filename));
    out.writeObject(key);
    out.close();
    the public key is:
    �� sr com.sun.rsajca.JSA_RSAPublicKeyrC��� xr com.sun.rsajca.JS_PublicKey~5< ~��% L thePublicKeyt Lcom/sun/rsasign/p;xpsr com.sun.rsasign.anm����9�[ [ at [B[ bq ~ xr com.sun.rsasign.p��(!g�� L at Ljava/lang/String;[ bt [Ljava/lang/String;xr com.sun.rsasign.c�"dyU�|  xpt Javaur [Ljava.lang.String;��V��{G  xp   q ~ ur [B���T�  xp   ��ccR}o���[!#I����lo������
    ����^"`8�|���Z>������&
    d ����"B��
    ^5���a����jw9�����D���D�)�*3/h��7�|��I�d�$�4f�8_�|���yuq ~
    How i can generated the key pairs in base 64 or binary????
    Thanxs for help me
    Luis Navarro Nu�ez
    Santiago.
    Chile.
    South America.

    I don't use ABA but BouncyCastle
    this could help you :
    try
    java.security.Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
    java.security.KeyPairGenerator kg = java.security.KeyPairGenerator.getInstance("RSA","BC");
    java.security.KeyPair kp = kg.generateKeyPair();
    java.security.Key pub = kp.getPublic();
    java.security.Key pri = kp.getPrivate();
    System.out.println("pub: " + pub);
    System.out.println("pri: " + pri);
    byte[] pub_e = pub.getEncoded();
    byte[] pri_e = pri.getEncoded();
    java.io.PrintWriter o;
    java.io.DataInputStream i;
    java.io.File f;
    o = new java.io.PrintWriter(new java.io.FileOutputStream("d:/pub64"));
    o.println(new sun.misc.BASE64Encoder().encode(pub_e));
    o.close();
    o = new java.io.PrintWriter(new java.io.FileOutputStream("d:/pri64"));
    o.println(new sun.misc.BASE64Encoder().encode(pri_e));
    o.close();
    java.io.BufferedReader br = new java.io.BufferedReader(new java.io.FileReader("d:/pub64"));
    StringBuffer keyBase64 = new StringBuffer();
    String line = br.readLine ();
    while(line != null)
    keyBase64.append (line);
    line = br.readLine ();
    byte [] pubBytes = new sun.misc.BASE64Decoder().decodeBuffer(keyBase64.toString ());
    br = new java.io.BufferedReader(new java.io.FileReader("d:/pri64"));
    keyBase64 = new StringBuffer();
    line = br.readLine ();
    while(line != null)
    keyBase64.append (line);
    line = br.readLine ();
    byte [] priBytes = new sun.misc.BASE64Decoder().decodeBuffer(keyBase64.toString ());
    java.security.KeyFactory kf = java.security.KeyFactory.getInstance("RSA","BC");
    java.security.Key pubKey = kf.generatePublic(new java.security.spec.X509EncodedKeySpec(pubBytes));
    System.out.println("pub: " + pubKey);
    java.security.Key priKey = kf.generatePrivate(new java.security.spec.PKCS8EncodedKeySpec(priBytes));
    System.out.println("pri: " + priKey);
    catch(Exception e)
    e.printStackTrace ();
    }

  • Help with creating a form, I want to add a check box to enable me to unlock certain fields and deselect the block again

    Help with creating a form, I want to add a check box to enable me to unlock certain fields and deselect the block again

    Look to the right under "More Like This". Your issue has been discussed many many times. The error you are seeing is because you do not have enough free "contiguous" space on your hard drive. Read the other threads that address this issue to find how to solve the issue.
    Or, put "The disk cannot be partitioned because some files cannot be moved" into the search box at the upper right of this page.

  • I need help with creating PDF with Preview...

    Hello
    I need help with creating PDF documetns with Preview. Just a few days ago, I was able to create PDF files composed of scanned images (notes) and everything worked perfectly fine. However, today I was having trouble with it. I scanned my notebook and saved 8 images/pages in jpeg format. I did the usual routine with Preview (select all files>print>PDF>save as PDF>then save). Well this worked a few days ago, but when I tried it today, I was able to save it, but the after opening the PDF file that I have saved, only the first page was there. The other pages weren't included. I really don't see anything wrong with what I'm doing. I really need help. Any help would be greatly appreciated.

    I can't find it.  I went into advanced and then document processing but no batch sequence is there and everything is grayed out.
    EDIT: I realized that you cant do batch sequences in standard.  Any other ideas?

  • Creating color schemes

    According to the official tutorial on creating color schemes s:Application has a style property named 'selectionColor':
    http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7f85.html#WS69 9A11B5-8BFB-4282-829A-C97DA87F116F
    But according to the ActionScript reference it doesn't:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/Applic ation.html#top
    Is this a bug? How do I set the selection color globally?

    hi
    you can set global styles in css which should work ok:
    global
      selection-color: #00FF00;

  • Help with database autentication schemes

    Hi
    I am new to apex, especialy with database autentication schemes, and I need some help with creating login credentials for 3 types of users from a table in my database.
    Any help and guidance would be apriciated.
    Thanks in advance,
    Voislav

    What Oracle Version you are using?

  • Help with creating a Quiz

    Hey i need help with creating a quiz with scoring and all.
    I need a helping hand so if you can get me started that
    would help a lot.
    Use the Question class to define a Quiz class. A
    quiz can be composed of up to 25 questions. Define the add method
    of the Quiz class to add a question to a quiz. Define the giveQuiz
    method of the Quiz class to present each question in turn to the user,
    accept an answer for each one, and keep track of the results. Define
    a class called QuizTime with a main method that populates a quiz,
    presents it, and prints the final results.
    // Question.java Author: Lewis/Loftus/Cocking
    // Represents a question (and its answer).
    public class Question implements Complexity
    private String question, answer;
    private int complexityLevel;
    // Sets up the question with a default complexity.
    public Question (String query, String result)
    question = query;
    answer = result;
    complexityLevel = 1;
    // Sets the complexity level for this question.
    public void setComplexity (int level)
    complexityLevel = level;
    // Returns the complexity level for this question.
    public int getComplexity()
    return complexityLevel;
    // Returns the question.
    public String getQuestion()
    return question;
    // Returns the answer to this question.
    public String getAnswer()
    return answer;
    // Returns true if the candidate answer matches the answer.
    public boolean answerCorrect (String candidateAnswer)
    return answer.equals(candidateAnswer);
    // Returns this question (and its answer) as a string.
    public String toString()
    return question + "\n" + answer;
    }

    Do you know why this lazy f&#97;rt-&#97;ss is back? Because when he posted his homework last week, some sorry-assed idiot went and did it for him.
    http://forum.java.sun.com/thread.jspa?threadID=5244564&messageID=10008358#10008358
    He didn't even thank the poster.
    It's the same problem over and over again. You feed the bears and it only teaches them to come back for handouts.
    My polite suggestion to the original poster: please do your own f&#117;cking homework.

  • Need help with creating a brush

    Hi guys,
    I wanted to ask for help with creating a brush (even a link to a tutorial will be goon enough ).
    I got this sample:
    I've created a brush from it, and i'm trying to get this kind of result:
    but it's only duplicates it and gives me this result:
    Can someone help me please understand what i need to define in order to make the brush behave like a continues brush instead of duplicate it?
    Thank you very much
    shlomit

    what you need to do is make a brush that looks like the tip of a brush. photoshop has several already but you can make your own that will be better.
    get a paintbrush and paint a spot kind of like what you did but dont paint a stroke. make it look kindof grungy. then make your brush from that, making sure to desaturate it and everything.
    EDIT:
    oh, and if you bring the fill down to like 10-20% your stroke will look better

  • I need help with creating some formulas

    I'm not sure if anyone around here can help me, but I'm trying to create a Numbers document and need some help with creating a formula/function.
    I have a column of amounts and I would like to create a formula which deducts a percentage (11.9%) and puts the result in another column.
    If anyone can help me, it would be greatly appreciated.

    Here is an example that shows one way to do this:
    The original data is in column A.  In column B we will store formulas to adjust the amounts:
    1) select the cell where you want to formula (in this case cell B2)
    2) Type the "=" (equal sign):
    3) click cell A2:
    4) now type the rest of the formula which is: "*(100-11.9)/100"  that is asterisk, then open parenthesis, 100 minus eleven point nine close parenthesis forward slash  one hundred
    The Asterisk is the multiply operator  (times) and the forward slash is the division operator (divide)
    now hit return.  select cell B2 and hover the cursor over the bottom edge of the cell:
    drag the little yellow dot down to "fill" the formula down as needed.

  • Help, I just accidentally closed my illustrator file without re-saving. Can I recover my file?

    Help, I just accidentally closed my illustrator file without re-saving. Can I recover my file to a previous version?

    If it was previously saved, you should still have that version. Any unsaved changes are gone.

  • Linking and updating colors across multiple illustrator files

    Is there a way to link and automatically update color swatches across multiple illustrator files (CS4)?
    I've saved swatches into an ASE file, and opened the ASE file into multiple illustrator files, but the secondary files don't seem to reference back to the ASE file, when a new version with changes to the swatches has been made.
    Thanks for any advice.

    @SP/RAA
    Jean posted perhaps the best solution for your problem.
    A template is an Illustrator document for startup. You can create a document...place all the colors you want to the Swatches panel....insert contents to symbol, brushes, graphic styles and so on. Then you can go File > Save as Template.
    Now...when you want to start a new document..you could File > New from Template. Then new document will have all the stuffs of the template, including other specifications like rulers viewed...guides...
    But even using template you cannot update a batch of documents...The template is only a document for start...and it does not keep linked to new documents based on it.
    Or you try via script (do not know how further it would help) or try the alternative given by Jean.
    Gustavo.

  • Colors of imported illustrator files don't match indesign colors

    I'll be honest: I'm likely missing something really basic. This is really frustrating, though.
    The simple version: when I drag an Illustrator file into my InDesign document, its colors don't match the colors of shapes in the InDesign document drawn with the same color values.
    The long version:
    I'm working on a resume document. I've created a logo in Illustrator - the document is in CMYK color mode and uses SWOP v2 color space. I've dragged the file into InDesign, where I have some basic geometric shapes that intersect the logo. The InDesign document is also set to CMYK and is using the SWOP v2 color space. I've noticed, however, that the colors of my logo (which, again, was imported from Illustrator) do not match the colors of shapes drawn natively in InDesign even when their hexadecimal color values are identical. To further this point. I created a shape in InDesign with color #86c8cf. I then copied the value #86c8cf into Illustrator and drew a shape using that color. I imported that Illustrator shape into InDesign and placed the Illustrator Shape and the native InDesign shapes side by side. I even exported to PDF and pulled it up in preview to proof it. The colors, while very similar, are NOT the same color.
    Am I missing something really obvious? Or are these two programs not at all working together like they're always said to do so well?

    Dunno why. Which versions of ID/AI? Not that it should matter, I get the same results with CS6 and CC2014.
    One square in ID is native, the other from a placed AI file--though drag and drop are the same results.
    Acrobat, hovering over one square...
    And over the other square...
    I used your hex values in Illy, used Illy's CMYK values in ID.
    Mike

  • Need help with creating template. Changes are not going through to index.html page

    Hi all,
    I have an issue with my template that I am creating and also a question about creating template Regions (Repeating and Editable).
    Somehow my changes to my index.dwt are not changing my index.html page.
    Also my other question is: For my top navigation bar and left navigation bar links, do I need to select and define each individual button or link as Repeating/Editable Region? or can I just select the whole navigation bar (the one on the top) etc...
    Below are my steps for creating my template...I am kinda fairly new to using DW and this is my first attempt to making a template following the DW tutorial CD that came with DW CS3.
    I appreciate any help with this...regards, Dano
    -Open my index.html file
    -File/save as template
    -Save
    -update links - yes
    -Select Repeating and Editable Regions (I selected the whole top navigation bar and selected Repeating Region and Editable Region, same with the left side navigation links)
    -File close all
    -Open the index.dwt
    -Save as and selected the index.html and chose to overide it..
    When I make changes to my index.dwt it is not changing the index.html
    I feel that I am missing some important steps here.....
    Website address
    www.defenseproshop.com

    Figured out

  • Help with Pantone+ colors?

    I know this has been posted many times but I have not been able to track down an answer...
    I'm working on Illustrator CC and looking to create a logo with PMS colors. I know the CMYK breakdown of a certain color, PMS 467, (9, 15, 34, 0), as we've been using it for years. When I go to use that color in CC, it's much darker and different.
    I looked here (http://helpx.adobe.com/illustrator/kb/pantone-plus.html) and tried to remove the Pantone+ libraries and replaced with Pantone from my old CS5. The problem is still occurring. Maybe it just isn't set to realize this? When I select color books though, the + is definitely gone, but the color is still off.
    It's not practical for me to use my old laptop with CS5, it's way too old and slow.
    Is there ANYTHING anyone knows on how to get through this? I know the people I am doing this logo for are going to want the PMS and the CMYK colors and I know they aren't going to be on CC/CS6. I desperately need the older color books on CC.
    Thank you so much in advance!!!

    Hi Monica - I should have mentioned in my original post - I did indeed do that.... still not working correctly

Maybe you are looking for

  • ABAP interface in real time

    Dear all, Hereafter is my scenario; My customer after sales system works on AS400. Assuming that I would manage spare parts (required for after sales) inventory, including goods entry, goods issue as well as the company financial accounting in SAP, I

  • IPod stops playing and gives apple symbol with weird colors.

    My IPod was in my pocket for only about 2 minutes and it stopped playing music and gave me a weird apple symbol and blue with white shading every where like it encountered a virus or something. It goes back shortly after but it keeps happening. Is th

  • What is root cause of Error in InitVXI library. Allocation error in initialization?

    The error result after executing ResMan;  Error: Error in InitVXI library. Allocation error in initialization. Hope you can help, thanks....

  • Keep table header in cfdocument

    Hi, I need output a long range of data(about 1500 rows) in cfdocument,I want to output 20 row per page. may I keep the table header in small tables in each page (like first name,last name,phone etc)? how to do that? Thanks Mark

  • Trade offs for spreading oraganizatons across suffixes - best practices?

    Hey Everyone, I am trying to figure out some best practices here. I'v looked through the docs but have not found anything that quite touches on this. In the past, here is how I created my directory (basically using dsconf create-suffix for each branc