If I understand you correctly, then you can use such query for your purposes:
List<Object[]> results = sess.createCriteria(Category.class, "category")
.add(Restrictions.in("category.name", new String[]{"Test1", "Test2"}))
.createAlias("items", "item")
.setProjection(Projections.projectionList()
.add(Projections.property("category.id"), "categoryId")
.add(Projections.property("category.name"), "categoryName")
.add(Projections.property("item.name"))
.add(Projections.property("item.initialPrice")))
.list();
It will return the list of Object[] arrays that represents each row of the result.
I don't know sructure of your Color entity and what fields you need from it thats why I posted example for two default entities: Category and Item (their relationship is one-to-many as in your case).
Instead of array you can use List. For example you can define resrictions in above example in such way:
List<String> inRestrictions = new ArrayList<String>();
inRestrictions.add("Test1");
inRestrictions.add("Test2");
...
.add(Restrictions.in("category.name", inRestrictions))
...
EDIT:
If you need Product object with list of colors for it then fetch only it. If you define correct mapping then Colors list will be fetched with it (lazily or eagerly).
List<Product> results = sess.createCriteria(Product.class)
.add(Restrictions.in("... necessary restrictions")
.list()